Files
haiku-beta6/headers/posix/stddef.h
T

16 lines
272 B
C
Raw Normal View History

2003-08-02 07:47:24 +00:00
#ifndef _STDDEF_H_
#define _STDDEF_H_
2003-08-02 07:47:24 +00:00
/*
** Distributed under the terms of the OpenBeOS License.
*/
#include <null.h>
2003-08-02 07:47:24 +00:00
#define offsetof(type,member) ((size_t)&((type*)0)->member)
2003-08-02 07:47:24 +00:00
typedef long ptrdiff_t;
2003-08-02 07:47:24 +00:00
#include <wchar_t.h>
#include <size_t.h>
2003-08-02 07:47:24 +00:00
#endif /* _STDDEF_H_ */