Sign in
mingw
/
mingw-w64
/
a4c0c1d00d140d69a2c72f6ca0d49c91bdb2b08c
/
.
/
mingw-w64-headers
/
testcases
/
2009
/
stdint_stddef1.c
blob: 4b5b46e382e9e5efca87205fe9aae55280ba5bae [
file
]
#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
;
}