diff options
Diffstat (limited to 'Modules/CheckSizeOf.c')
-rw-r--r-- | Modules/CheckSizeOf.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/Modules/CheckSizeOf.c b/Modules/CheckSizeOf.c deleted file mode 100644 index 139a3ab..0000000 --- a/Modules/CheckSizeOf.c +++ /dev/null @@ -1,20 +0,0 @@ -#ifdef CHECK_SIZE_OF - -#ifdef HAVE_SYS_TYPES_H -# include <sys/types.h> -#endif /* HAVE_SYS_TYPES_H */ - -#ifdef HAVE_STDINT_H -# include <stdint.h> -#endif /* HAVE_STDINT_H */ - -int main() -{ - return sizeof(CHECK_SIZE_OF); -} - -#else /* CHECK_SIZE_OF */ - -# error "CHECK_SIZE_OF has to specify the type" - -#endif /* CHECK_SIZE_OF */ |