Sign in
third-party-mirror
/
mingw-w64
/
refs/tags/v4.0.6
/
.
/
mingw-w64-headers
/
testcases
/
2009
/
stdint_stddef1.c
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
;
}