diff options
Diffstat (limited to 'roms/SLOF/lib/libc/include/stddef.h')
-rw-r--r-- | roms/SLOF/lib/libc/include/stddef.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/roms/SLOF/lib/libc/include/stddef.h b/roms/SLOF/lib/libc/include/stddef.h new file mode 100644 index 000000000..e240106a4 --- /dev/null +++ b/roms/SLOF/lib/libc/include/stddef.h @@ -0,0 +1,24 @@ +/****************************************************************************** + * Copyright (c) 2004, 2008 IBM Corporation + * All rights reserved. + * This program and the accompanying materials + * are made available under the terms of the BSD License + * which accompanies this distribution, and is available at + * http://www.opensource.org/licenses/bsd-license.php + * + * Contributors: + * IBM Corporation - initial implementation + *****************************************************************************/ + +#ifndef _STDDEF_H +#define _STDDEF_H + + +#define NULL ((void *)0) + +typedef unsigned long size_t; + + +#endif + + |