aboutsummaryrefslogtreecommitdiffstats
path: root/bs/deftypes.c
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2006-09-06 09:28:16 +0000
committerEric Wong <normalperson@yhbt.net>2006-09-06 09:28:16 +0000
commitb78b0a7f09eb2c276cb62645c5f2481f205329a0 (patch)
tree32a5c42ce51a1ca33987d17b4144297d2c912cf0 /bs/deftypes.c
parent412cb1ee105a74999a3ffac4e60e6602c5f2e541 (diff)
downloadmpd-b78b0a7f09eb2c276cb62645c5f2481f205329a0.tar.gz
mpd-b78b0a7f09eb2c276cb62645c5f2481f205329a0.tar.xz
mpd-b78b0a7f09eb2c276cb62645c5f2481f205329a0.zip
remove bs; oops, didn't mean to commit that
git-svn-id: https://svn.musicpd.org/mpd/trunk@4738 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-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;
-}