Changeset 674 in vbox for trunk/src/VBox/Devices/Network/slirp
- Timestamp:
- Feb 6, 2007 4:25:06 AM (18 years ago)
- Location:
- trunk/src/VBox/Devices/Network/slirp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/slirp/misc.c
r530 r674 106 106 }; 107 107 108 inline void 108 #ifndef _MSC_VER 109 inline 110 #endif 111 void 109 112 insque_32(a, b) 110 113 void *a; … … 121 124 } 122 125 123 inline void 126 #ifndef _MSC_VER 127 inline 128 #endif 129 void 124 130 remque_32(a) 125 131 void *a; -
trunk/src/VBox/Devices/Network/slirp/slirp.h
r1 r674 317 317 # define remque_32 remque 318 318 #else 319 # ifdef _MSC_VER 320 extern void insque_32 _P((void *, void *)); 321 extern void remque_32 _P((void *)); 322 # else 319 323 inline void insque_32 _P((void *, void *)); 320 324 inline void remque_32 _P((void *)); 325 # endif 321 326 #endif 322 327
Note:
See TracChangeset
for help on using the changeset viewer.