* t_crc.c: Declare local functions static
authorEzra Peisach <epeisach@mit.edu>
Mon, 23 Dec 2002 17:57:48 +0000 (17:57 +0000)
committerEzra Peisach <epeisach@mit.edu>
Mon, 23 Dec 2002 17:57:48 +0000 (17:57 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@15064 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/crypto/crc32/ChangeLog
src/lib/crypto/crc32/t_crc.c

index a0edb72954d4a70808fe48277b2b9f0131e5f9bc..256c9ea26e1d20327ba1c2c0235c88f7e6667f72 100644 (file)
@@ -1,3 +1,7 @@
+2002-12-23  Ezra Peisach  <epeisach@bu.edu>
+
+       * t_crc.c: Declare local functions static. 
+
 2002-08-29  Ken Raeburn  <raeburn@mit.edu>
 
        * Makefile.in: Revert $(S)=>/ change, for Windows support.
index 750f30ccd0f5793022d96bfa221728a8875bbb59..37315a526ff88d9dd9c71432237d59d6bf72528c 100644 (file)
@@ -105,8 +105,8 @@ struct crc_trial trials[] = {
 
 #define NTRIALS (sizeof(trials) / sizeof(trials[0]))
 
-void
-timetest(int nblk, int blksiz)
+static void
+timetest(unsigned int nblk, unsigned int blksiz)
 {
     char *block;
     int i;
@@ -148,8 +148,8 @@ timetest(int nblk, int blksiz)
 #endif
 }
 
-void gethexstr(char *data, size_t *outlen, unsigned char *outbuf,
-              size_t buflen)
+static void gethexstr(char *data, size_t *outlen, unsigned char *outbuf,
+                     size_t buflen)
 {
     size_t inlen;
     char *cp, buf[3];
@@ -167,7 +167,7 @@ void gethexstr(char *data, size_t *outlen, unsigned char *outbuf,
     }
 }
 
-void
+static void
 verify(void)
 {
     int i;