Changeset 354 for trunk/src/emx/include/utils.h
- Timestamp:
- Jul 11, 2003, 1:39:47 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/utils.h
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r353 r354 3 3 #define _UTILS_H_ 4 4 5 #ifndef TCPCALL 6 #define TCPCALL _System 7 #endif 8 5 9 #ifdef TCPV40HDRS 6 10 7 /** @name tcpip40 function mappings. 8 * @{ */ 9 #define lswap tcpip40_lswap 10 #define bswap tcpip40_bswap 11 #define rexec tcpip40_rexec 12 /* @} */ 13 unsigned long _System lswap(unsigned long); 14 unsigned short _System bswap(unsigned short); 15 int _System rexec(char **, int, char *, char *, char *, int *); 11 unsigned long TCPCALL lswap(unsigned long); 12 unsigned short TCPCALL bswap(unsigned short); 13 int TCPCALL rexec(char **, int, char *, char *, char *, int *); 16 14 17 15 /* Definition for bswap */ … … 23 21 #define copyout(x,y,z) memcpy((y),(x),(z)) 24 22 #ifndef XP_OS2_VACPP /* mozilla */ 23 /* We've got the real thing now. (aliased at least) 25 24 #define strcasecmp(x,y) strcmpi((x),(y)) 26 25 #define strncasecmp(x,y,z) strnicmp(x,y,z) 26 */ 27 27 #endif 28 int strcasecmp (__const__ char *, __const__ char *); 29 int strncasecmp (__const__ char *, __const__ char *, size_t); 28 30 29 31 #ifndef MIN … … 39 41 40 42 #else 41 int _Systemrexec(char **, int, char *, char *, char *, int *);43 int TCPCALL rexec(char **, int, char *, char *, char *, int *); 42 44 #endif /*TCPV40HDRS*/ 43 45 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.