diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-06-26 05:21:49 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-06-26 05:21:49 +0000 |
commit | 4d0c3167099f461b46fafaa3a35b14babbadcb93 (patch) | |
tree | 1dd01c4f0af0e8d41ad0cd8356dc4639ad2857dc | |
parent | b33000cdc0cafd4888c3f07c56050626743abd14 (diff) | |
download | samba-4d0c3167099f461b46fafaa3a35b14babbadcb93.tar.gz samba-4d0c3167099f461b46fafaa3a35b14babbadcb93.tar.xz samba-4d0c3167099f461b46fafaa3a35b14babbadcb93.zip |
fall back to "unsigned" for uint32 on systems that don't have one
-rw-r--r-- | source/include/includes.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/include/includes.h b/source/include/includes.h index 32f8429345b..b801e1408c7 100644 --- a/source/include/includes.h +++ b/source/include/includes.h @@ -449,7 +449,9 @@ typedef int socklen_t; #define uint32 unsigned long #elif (SIZEOF_SHORT == 4) #define uint32 unsigned short -#endif +#else +/* uggh - no 32 bit type?? probably a CRAY. just hope this works ... */ +#define uint32 unsigned #endif /* |