Skip to content
Snippets Groups Projects
Commit 2acb8957 authored by Wolfgang Denk's avatar Wolfgang Denk
Browse files

Initial revision

parent 3b58acd4
No related branches found
No related tags found
No related merge requests found
#ifndef _LINUX_STDDEF_H
#define _LINUX_STDDEF_H
#undef NULL
#if defined(__cplusplus)
#define NULL 0
#else
#define NULL ((void *)0)
#endif
#ifndef _SIZE_T
#include <linux/types.h>
#endif
#undef offsetof
#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment