ENH: mark some vars as advanced (and resort the list)
[cmake.git] / Modules / CheckSizeOf.c
blob139a3ab7dd31ad1e2fda2b6456bcb2e35abc57cb
1 #ifdef CHECK_SIZE_OF
3 #ifdef HAVE_SYS_TYPES_H
4 # include <sys/types.h>
5 #endif /* HAVE_SYS_TYPES_H */
7 #ifdef HAVE_STDINT_H
8 # include <stdint.h>
9 #endif /* HAVE_STDINT_H */
11 int main()
13 return sizeof(CHECK_SIZE_OF);
16 #else /* CHECK_SIZE_OF */
18 # error "CHECK_SIZE_OF has to specify the type"
20 #endif /* CHECK_SIZE_OF */