home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Power 1999 February
/
MACPOWER-1999-02.ISO.7z
/
MACPOWER-1999-02.ISO
/
9902⁄AMUG
/
UTILITY
/
mac06-0.95.sit
/
mac06-0.95
/
home
/
demo
/
src
/
Aliases
/
include
/
stddef.h
< prev
next >
Wrap
Text File
|
1998-08-01
|
242b
|
17 lines
/* mac06ゥ1997,98 by HNS/DSITRI hns@computer.org
** stddef.h
*/
#pragma once
#include "size_t.h"
#include "wchar_t.h"
#ifndef NULL
#define NULL (0)
#endif
#define offsetof(s, x) (ptrdiff_t) &(((s *) 0)->x)
typedef int ptrdiff_t;
/* EOF */