summaryrefslogtreecommitdiff
path: root/md5-crypt/md5.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1997-06-21 21:43:00 +0000
committerUlrich Drepper <drepper@redhat.com>1997-06-21 21:43:00 +0000
commit36775c3ba3cc21296f7248e761b8678ae0bf2fed (patch)
tree7224e39ab74e652d5f561fb12176450da61d0e07 /md5-crypt/md5.h
parent5107cf1d7d27f17c6de68ec15a8e8d9dd5b471c1 (diff)
1997-06-21 17:35 Ulrich Drepper <drepper@cygnus.com> * argp/argp.h: Remove extra #endif. Pretty print. * md5-crypt/md5.h: Likewise. * ctype/ctype.h: Don't use <gnu/types.h> but <bits/types.h>. * wctype/wctype.h: Likewise. * sysdeps/unix/sysv/linux/Makefile: Build stdio_lim.h in correct directory. * sysdeps/libm-i387/s_ilogb.S: Add fwait to ensure we get the result. * sysdeps/libm-i387/s_ilogbf.S: Likewise. * sysdeps/libm-i387/s_ilogbl.S: Likewise. * sysdeps/libm-i387/s_lrint.S: Likewise. * sysdeps/libm-i387/s_llrint.S: Likewise.
Diffstat (limited to 'md5-crypt/md5.h')
-rw-r--r--md5-crypt/md5.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/md5-crypt/md5.h b/md5-crypt/md5.h
index b668a64284..dacc1ae73b 100644
--- a/md5-crypt/md5.h
+++ b/md5-crypt/md5.h
@@ -72,9 +72,9 @@ typedef u_int32_t md5_uint32;
#undef __P
#if defined (__STDC__) && __STDC__
-#define __P(x) x
+# define __P(x) x
#else
-#define __P(x) ()
+# define __P(x) ()
#endif
/* Structure to save state of computation between the single steps. */
@@ -143,7 +143,6 @@ extern void *md5_read_ctx __P ((const struct md5_ctx *ctx, void *resbuf));
resulting message digest number will be written into the 16 bytes
beginning at RESBLOCK. */
extern int __md5_stream __P ((FILE *stream, void *resblock));
-#endif /* md5.h */
/* Compute MD5 message digest for LEN bytes beginning at BUFFER. The
result is always in little endian byte order, so that a byte-wise
@@ -154,4 +153,4 @@ extern void *__md5_buffer __P ((const char *buffer, size_t len,
extern void *md5_buffer __P ((const char *buffer, size_t len,
void *resblock));
-#endif
+#endif /* md5.h */