]> Pileus Git - ~andy/fetchmail/blobdiff - md5global.h
Markup cleanup.
[~andy/fetchmail] / md5global.h
index bde8db06d55d5bc20b2884bb58a774337fb0ea0a..14f6e44b394b1c00049fba3d40f79e8d9dcc537c 100644 (file)
 /* GLOBAL.H - RSAREF types and constants
  */
 
-/* PROTOTYPES should be set to one if and only if the compiler supports
-  function argument prototyping.
-The following makes PROTOTYPES default to 0 if it has not already
-  been defined with C compiler flags.
- */
-
+/* force prototypes on, we need ANSI C anyway */
 #ifndef PROTOTYPES
-#define PROTOTYPES HAVE_PROTOTYPES
+#define PROTOTYPES 1
 #endif
 
 /* POINTER defines a generic pointer type */
@@ -27,7 +22,11 @@ typedef unsigned char *POINTER;
 typedef unsigned short int UINT2;
 
 /* UINT4 defines a four byte word */
+#if SIZEOF_INT == 4
+typedef unsigned int UINT4;
+#else
 typedef unsigned long int UINT4;
+#endif
 
 /* PROTO_LIST is defined depending on how PROTOTYPES is defined above.
 If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it