summaryrefslogtreecommitdiff
path: root/brg_types.h
diff options
context:
space:
mode:
authorMikhail Gusarov <dottedmag@dottedmag.net>2008-09-25 09:51:51 +0700
committerMikhail Gusarov <dottedmag@dottedmag.net>2008-09-25 09:51:51 +0700
commit38b914d68e911cd10004bf7fc690e82f9e8f3f96 (patch)
treef8cd063f9458f4e38459b42dc9be290118b47b04 /brg_types.h
parent0cd14a8591c2ddb7fca5e576f6322a89097f5fc7 (diff)
downloadlibsha1-38b914d68e911cd10004bf7fc690e82f9e8f3f96.tar.gz
uint_32t type is replaced with uint32_t. uint_8/16/64t checks are removed as unused
Diffstat (limited to 'brg_types.h')
-rw-r--r--brg_types.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/brg_types.h b/brg_types.h
index 4738359..1f64ed1 100644
--- a/brg_types.h
+++ b/brg_types.h
@@ -26,17 +26,6 @@
This software is provided 'as is' with no explicit or implied warranties
in respect of its properties, including, but not limited to, correctness
and/or fitness for purpose.
- ---------------------------------------------------------------------------
- Issue 09/09/2006
-
- The unsigned integer types defined here are of the form uint_<nn>t where
- <nn> is the length of the type; for example, the unsigned 32-bit type is
- 'uint_32t'. These are NOT the same as the 'C99 integer types' that are
- defined in the inttypes.h and stdint.h headers since attempts to use these
- types have shown that support for them is still highly variable. However,
- since the latter are of the form uint<nn>_t, a regular expression search
- and replace (in VC++ search on 'uint_{:z}t' and replace with 'uint\1_t')
- can be used to convert the types used here to the C99 standard types.
*/
#ifndef BRG_TYPES_H
@@ -57,11 +46,6 @@ extern "C" {
# include <stdint.h>
#endif
-typedef uint8_t uint_8t;
-typedef uint16_t uint_16t;
-typedef uint32_t uint_32t;
-typedef uint64_t uint_64t;
-
#ifndef RETURN_VALUES
# define RETURN_VALUES
# if defined( DLL_EXPORT )