blob: 4b5b46e382e9e5efca87205fe9aae55280ba5bae [file] [log] [blame]
#include <stdint.h>
#include <stddef.h>
extern void abort(void);
int main()
{
int ret = 0;
#ifndef NULL
ret=1;
#endif
if (ret) abort();
#ifndef offsetof
ret=1;
#endif
if (ret) abort();
return 0;
}