diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-08-19 21:29:41 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-08-19 21:29:41 +0000 |
commit | c77945f9b968167988fecb8f47ab5f9652ffb647 (patch) | |
tree | ad51dfdb640270d4d9ee0c7e0ae329cefc4e2ed2 | |
parent | 0321800348d9b07609694d666a4d0957b9743d01 (diff) |
proper prototype
-rw-r--r-- | usr.bin/ssh/crc32.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/crc32.h b/usr.bin/ssh/crc32.h index 45495b4223c..2c84a80173d 100644 --- a/usr.bin/ssh/crc32.h +++ b/usr.bin/ssh/crc32.h @@ -13,7 +13,7 @@ * */ -/* RCSID("$OpenBSD: crc32.h,v 1.6 2000/06/20 01:39:40 markus Exp $"); */ +/* RCSID("$OpenBSD: crc32.h,v 1.7 2000/08/19 21:29:40 deraadt Exp $"); */ #ifndef CRC32_H #define CRC32_H @@ -22,6 +22,6 @@ * This computes a 32 bit CRC of the data in the buffer, and returns the CRC. * The polynomial used is 0xedb88320. */ -unsigned int crc32(const unsigned char *buf, unsigned int len); +unsigned int ssh_crc32(const unsigned char *buf, unsigned int len); #endif /* CRC32_H */ |