home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ISO Collection
/
AmigaUtilCD2.iso
/
Programming
/
C
/
OTL-MC6.DMS
/
in.adf
/
incl.lha
/
INCLUDE
/
stddef.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1994-03-15
|
217 b
|
16 lines
#ifndef _INCLUDE_STDDEF_H
#define _INCLUDE_STDDEF_H
#ifndef NULL
#define NULL 0
#endif
#define offsetof(s,m) ((unsigned)&((s*)NULL)->m)
typedef unsigned size_t;
typedef int ptrdiff_t;
typedef int wchar_t;
#endif