home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Education Sampler 1992 [NeXTSTEP]
/
Education_1992_Sampler.iso
/
NeXT
/
GnuSource
/
cc-61.0.1
/
cc
/
config
/
xm-crds.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-10-08
|
358b
|
22 lines
#define USG
#ifndef unos
#define unos
#endif
#include "xm-m68k.h"
#define bcopy(a,b,c) memcpy (b,a,c)
#define bzero(a,b) memset (a,0,b)
#define bcmp(a,b,c) memcmp (a,b,c)
/* Avoid conflict with C library by changing name of this symbol. */
#define gettime gcc_gettime
#ifndef __GNUC__
#define USE_C_ALLOCA
#else
#define alloca __builtin_alloca
#endif