summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2006-02-11 17:31:01 +0000
committerSimon Josefsson <simon@josefsson.org>2006-02-11 17:31:01 +0000
commit57dea4264da42077ed2231d35551b20676aec2d9 (patch)
tree20aaca4d91160d442f868c1f1a851af4dfd3e481
parent2e2bcb0a33f2ea7fc9cdc76ff2246036be458974 (diff)
downloadlibtasn1-57dea4264da42077ed2231d35551b20676aec2d9.tar.gz
libtasn1-57dea4264da42077ed2231d35551b20676aec2d9.tar.bz2
libtasn1-57dea4264da42077ed2231d35551b20676aec2d9.zip
Remove unused.
-rw-r--r--lib/defines.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/lib/defines.h b/lib/defines.h
index 9b3329b..47d6a35 100644
--- a/lib/defines.h
+++ b/lib/defines.h
@@ -47,31 +47,6 @@
#else
# if HAVE_STDINT_H
# include <stdint.h>
-# else
-# if SIZEOF_UNSIGNED_LONG_INT == 4
-typedef unsigned long int uint32;
-typedef signed long int sint32;
-# elif SIZEOF_UNSIGNED_INT == 4
-typedef unsigned int uint32;
-typedef signed int sint32;
-# else
-# error "Cannot find a 32 bit integer in your system, sorry."
-# endif
-# if SIZEOF_UNSIGNED_INT == 2
-typedef unsigned int uint16;
-typedef signed int sint16;
-# elif SIZEOF_UNSIGNED_SHORT_INT == 2
-typedef unsigned short int uint16;
-typedef signed short int sint16;
-# else
-# error "Cannot find a 16 bit integer in your system, sorry."
-# endif
-# if SIZEOF_UNSIGNED_CHAR == 1
-typedef unsigned char uint8;
-typedef signed char int8;
-# else
-# error "Cannot find an 8 bit char in your system, sorry."
-# endif
# endif
#endif