summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1996-09-30 23:54:39 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1996-09-30 23:54:39 +0000
commitda29113913bef0b331315d7885bbf27398ab298e (patch)
treeef8eb8c9ebad5e952c175d4858e6414614ee1b8f /lib
parent4348b5dfc4f9e7361bbbfb50c9d8678f29f02c00 (diff)
Added missing static's.
Diffstat (limited to 'lib')
-rw-r--r--lib/libskey/skeysubr.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libskey/skeysubr.c b/lib/libskey/skeysubr.c
index 2f3825aa9e7..05809a9ec78 100644
--- a/lib/libskey/skeysubr.c
+++ b/lib/libskey/skeysubr.c
@@ -10,7 +10,7 @@
*
* S/KEY misc routines.
*
- * $Id: skeysubr.c,v 1.8 1996/09/30 23:26:28 millert Exp $
+ * $Id: skeysubr.c,v 1.9 1996/09/30 23:54:38 millert Exp $
*/
#include <stdio.h>
@@ -187,7 +187,7 @@ f(x)
skey_algorithm_table[skey_hash_type].f(x);
}
-void
+static void
f_md4(x)
char *x;
{
@@ -205,7 +205,7 @@ f_md4(x)
(void)memcpy((void *)x, (void *)results, 8);
}
-void
+static void
f_md5(x)
char *x;
{
@@ -223,7 +223,7 @@ f_md5(x)
(void)memcpy((void *)x, (void *)results, 8);
}
-void
+static void
f_sha1(x)
char *x;
{