aboutsummaryrefslogtreecommitdiffstats
path: root/bs/deftypes.c
diff options
context:
space:
mode:
Diffstat (limited to 'bs/deftypes.c')
-rw-r--r--bs/deftypes.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/bs/deftypes.c b/bs/deftypes.c
deleted file mode 100644
index dad9b58a8..000000000
--- a/bs/deftypes.c
+++ /dev/null
@@ -1,18 +0,0 @@
-#include <stdio.h>
-
-int main(int argc, char argv[])
-{
- long one = 1;
- puts( *((char *)(&one)) ? "/* #undef WORDS_BIGENDIAN */"
- : "#define WORDS_BIGENDIAN" );
- printf( "#define SIZEOF_INT %ld\n"
- "#define SIZEOF_LONG %ld\n"
- "#define SIZEOF_LONG_LONG %ld\n"
- "#define SIZEOF_SHORT %ld\n",
- (long int)(sizeof(int)),
- (long int)(sizeof(long)),
- (long int)(sizeof(long long)),
- (long int)(sizeof(short)) );
-
- return 0;
-}