24 lines
447 B
C
Executable file
24 lines
447 B
C
Executable file
/*
|
|
<stddef.h> - standard type definitions
|
|
|
|
This header is a part of fenlibc,
|
|
a component of the Fenix Operating System
|
|
|
|
This package is free software. Please see the
|
|
file COPYING in the source distribution for
|
|
more information.
|
|
*/
|
|
|
|
#ifndef _FLC_STDDEF
|
|
#define _FLC_STDDEF
|
|
|
|
#undef NULL
|
|
#define NULL (void *) 0
|
|
|
|
#define __need_ptrdiff_t
|
|
#define __need_size_t
|
|
#define __need_wchar_t
|
|
|
|
#include <sys/types.h>
|
|
|
|
#endif /* ndef _FLC_STDDEF */
|