• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <stdint.h>
2 #include <stddef.h>
3 extern void abort(void);
4 
main()5 int main()
6 {
7   int ret = 0;
8 #ifndef NULL
9   ret=1;
10 #endif
11   if (ret) abort();
12 #ifndef offsetof
13   ret=1;
14 #endif
15   if (ret) abort();
16   return 0;
17 }
18 
19