comparison src/md5.c @ 406:b8cc9ab3f761 r21-2-33

Import from CVS: tag r21-2-33
author cvs
date Mon, 13 Aug 2007 11:17:09 +0200
parents 74fd4e045ea6
children 697ef44129c6
comparison
equal deleted inserted replaced
405:0e08f63c74d2 406:b8cc9ab3f761
27 #endif 27 #endif
28 28
29 #include <sys/types.h> 29 #include <sys/types.h>
30 #include <string.h> 30 #include <string.h>
31 #include <stdio.h> 31 #include <stdio.h>
32 32 #include <limits.h>
33 #if defined HAVE_LIMITS_H || _LIBC
34 # include <limits.h>
35 #endif
36 33
37 /* The following contortions are an attempt to use the C preprocessor 34 /* The following contortions are an attempt to use the C preprocessor
38 to determine an unsigned integral type that is 32 bits wide. An 35 to determine an unsigned integral type that is 32 bits wide. An
39 alternative approach is to use autoconf's AC_CHECK_SIZEOF macro, but 36 alternative approach is to use autoconf's AC_CHECK_SIZEOF macro, but
40 doing that would require that the configure script compile and *run* 37 doing that would require that the configure script compile and *run*