1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-13 13:18:06 +03:00

fall back to "unsigned" for uint32 on systems that don't have one

This commit is contained in:
Andrew Tridgell 0001-01-01 00:00:00 +00:00
parent b33000cdc0
commit 4d0c316709

View File

@ -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
/*