24 lines
546 B
C
Executable file
24 lines
546 B
C
Executable file
/*
|
|
* <stddef.h> - standard type definitions
|
|
*
|
|
* This header is a part of the FENIX C Library and is free software.
|
|
* You can redistribute and/or modify it subject to the terms of the
|
|
* Clumsy Wolf Public License v4. For more details, see the file COPYING.
|
|
*
|
|
* The FENIX C Library is distributed WITH NO WARRANTY WHATSOEVER. See
|
|
* The CWPL for more details.
|
|
*/
|
|
|
|
#ifndef _STDDEF_H
|
|
#define _STDDEF_H
|
|
|
|
#undef NULL
|
|
#define NULL (void *) 0
|
|
|
|
#define __need_ptrdiff_t
|
|
#define __need_size_t
|
|
#define __need_wchar_t
|
|
|
|
#include <sys/types.h>
|
|
|
|
#endif
|