+Fri Feb 3 17:23:45 1995 Theodore Y. Ts'o (tytso@dcl)
+
+ * pcbc_encrypt.c: Add SIZEOF_FOO checks to properly define
+ KRB_INT32
+
Wed Jan 18 15:12:18 1995 Theodore Y. Ts'o (tytso@dcl)
* read_passwd.c (des_read_password): Declare global_context and
#include <krb5/osconf.h>
#ifndef KRB_INT32
+#if (SIZEOF_LONG == 4)
#define KRB_INT32 long
+#elif (SIZEOF_INT == 4)
+#define KRB_INT32 int
+#elif (SIZEOF_SHORT == 4)
+#define KRB_INT32 short
+#else
+ ?== No 32 bit type available
#endif
+#endif /* !KRB_INT32 */
+
+
#ifndef KRB_UINT32
#define KRB_UINT32 unsigned KRB_INT32
#endif