about summary refs log tree commit diff
path: root/src/libutil/md5.h
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2006-05-24T13·23+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2006-05-24T13·23+0000
commitd764409d9714562f74b378f3eea666528aae3130 (patch)
tree894556c73004718f1f79a17218bd43f4d9566894 /src/libutil/md5.h
parentb5988004d64d6c533e8bb09732a6f7cd4fb1194f (diff)
* Some Cygwin fixes.
Diffstat (limited to 'src/libutil/md5.h')
-rw-r--r--src/libutil/md5.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/libutil/md5.h b/src/libutil/md5.h
index cecbf8bbfce2..228d4972320f 100644
--- a/src/libutil/md5.h
+++ b/src/libutil/md5.h
@@ -45,20 +45,20 @@ struct MD5_CTX
 
 /* Initialize structure containing state of computation.
    (RFC 1321, 3.3: Step 3)  */
-extern void MD5_Init __P ((struct MD5_CTX *ctx));
+extern void MD5_Init (struct MD5_CTX *ctx);
 
 /* Starting with the result of former calls of this function (or the
    initialization function update the context for the next LEN bytes
    starting at BUFFER.
    It is necessary that LEN is a multiple of 64!!! */
-extern void md5_process_block __P ((const void *buffer, size_t len,
-				      struct MD5_CTX *ctx));
+extern void md5_process_block (const void *buffer, size_t len,
+				      struct MD5_CTX *ctx);
 
 /* Starting with the result of former calls of this function (or the
    initialization function update the context for the next LEN bytes
    starting at BUFFER.
    It is NOT required that LEN is a multiple of 64.  */
-extern void MD5_Update __P ((struct MD5_CTX *ctx, const void *buffer, size_t len));
+extern void MD5_Update (struct MD5_CTX *ctx, const void *buffer, size_t len);
 
 /* Process the remaining bytes in the buffer and put result from CTX
    in first 16 bytes following RESBUF.  The result is always in little
@@ -67,7 +67,7 @@ extern void MD5_Update __P ((struct MD5_CTX *ctx, const void *buffer, size_t len
 
    IMPORTANT: On some systems it is required that RESBUF is correctly
    aligned for a 32 bits value.  */
-extern void *MD5_Final __P ((void *resbuf, struct MD5_CTX *ctx));
+extern void *MD5_Final (void *resbuf, struct MD5_CTX *ctx);
 
 
 /* Put result from CTX in first 16 bytes following RESBUF.  The result is
@@ -76,7 +76,7 @@ extern void *MD5_Final __P ((void *resbuf, struct MD5_CTX *ctx));
 
    IMPORTANT: On some systems it is required that RESBUF is correctly
    aligned for a 32 bits value.  */
-extern void *md5_read_ctx __P ((const struct MD5_CTX *ctx, void *resbuf));
+extern void *md5_read_ctx (const struct MD5_CTX *ctx, void *resbuf);
 
 
 #endif /* md5.h */