mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
20 lines
428 B
C
20 lines
428 B
C
#define bcopy(s,d,l) memcpy((d),(s),(l))
|
|
#define bzero(cp,l) memset((cp),0,(l))
|
|
|
|
#define rindex strrchr
|
|
#define index strchr
|
|
|
|
#define getwd getcwd
|
|
|
|
#define strcasecmp _stricmp
|
|
#define strncasecmp _strnicmp
|
|
|
|
#ifndef _TIMEZONE_DEFINED /* also in sys/time.h */
|
|
#define _TIMEZONE_DEFINED
|
|
struct timezone {
|
|
int tz_minuteswest;
|
|
int tz_dsttime;
|
|
};
|
|
|
|
extern int __cdecl gettimeofday (struct timeval *p, struct timezone *z);
|
|
#endif
|