URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rc203soc/] [sw/] [uClinux/] [include/] [linux/] [stddef.h] - Rev 1780
Go to most recent revision | Compare with Previous | Blame | View Log
#ifndef _LINUX_STDDEF_H #define _LINUX_STDDEF_H #ifndef _SIZE_T #define _SIZE_T typedef unsigned int size_t; #endif #undef NULL #define NULL ((void *)0) #undef offsetof #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) #endif
Go to most recent revision | Compare with Previous | Blame | View Log