Imported Upstream version 2.9.0
[debian/cc1111] / device / include / pic16 / stddef.h
1 /*-------------------------------------------------------------------------
2    stddef.h - ANSI functions forward declarations
3
4    Ported to PIC16 port by Raphael Neider <rneider AT web.de> (2005)
5
6    Written By -  Maarten Brock / sourceforge.brock@dse.nl (June 2004)
7
8    This library is free software; you can redistribute it and/or
9    modify it under the terms of the GNU Lesser General Public
10    License as published by the Free Software Foundation; either
11    version 2.1 of the License, or (at your option) any later version.
12
13    This library is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16    Lesser General Public License for more details.
17
18    You should have received a copy of the GNU Lesser General Public
19    License along with this library; if not, write to the Free Software
20    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21 -------------------------------------------------------------------------*/
22
23 /*
24 ** $Id: stddef.h 4148 2006-05-01 20:47:12Z tecodev $
25 */ 
26
27 #ifndef __PIC16_STDDEF_H
28 #define __PIC16_STDDEF_H 1
29
30 #ifndef NULL
31   #define NULL (void *)0
32 #endif
33
34 #ifndef _SIZE_T_DEFINED
35 #define _SIZE_T_DEFINED
36   typedef unsigned int size_t;
37 #endif
38
39 #define offsetof(s,m)   (size_t)&(((s *)0)->m)
40
41 #endif  /* __PIC16_STDDEF_H */