summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/crc32.h
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1999-10-01 18:18:57 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1999-10-01 18:18:57 +0000
commitd5bbae0ace3dcb8c40cb2a5c83451b79622a88cf (patch)
treed4950715fe17aa316bb306c022d798164b83e636 /usr.bin/ssh/crc32.h
parent6ccebfddaac0721e378cde5ed1ab2d5dfc187ba3 (diff)
s/long/int/
Diffstat (limited to 'usr.bin/ssh/crc32.h')
-rw-r--r--usr.bin/ssh/crc32.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/crc32.h b/usr.bin/ssh/crc32.h
index dbc0a2fb1e7..de7704d6da5 100644
--- a/usr.bin/ssh/crc32.h
+++ b/usr.bin/ssh/crc32.h
@@ -13,13 +13,13 @@ Functions for computing 32-bit CRC.
*/
-/* RCSID("$Id: crc32.h,v 1.1 1999/09/26 20:53:35 deraadt Exp $"); */
+/* RCSID("$Id: crc32.h,v 1.2 1999/10/01 18:18:56 deraadt Exp $"); */
#ifndef CRC32_H
#define CRC32_H
/* This computes a 32 bit CRC of the data in the buffer, and returns the
CRC. The polynomial used is 0xedb88320. */
-unsigned long crc32(const unsigned char *buf, unsigned int len);
+unsigned int crc32(const unsigned char *buf, unsigned int len);
#endif /* CRC32_H */