diff options
author | 1996-09-30 04:10:43 +0000 | |
---|---|---|
committer | 1996-09-30 04:10:43 +0000 | |
commit | 2ebf74108917abdb21bb63f1895547cfa1bf1326 (patch) | |
tree | 252b329131d01c18a0e91283aaaa1ee68268d78c /lib/libskey/put.c | |
parent | Moved definitions of BYTE and LONG in from header file. (diff) | |
download | wireguard-openbsd-2ebf74108917abdb21bb63f1895547cfa1bf1326.tar.xz wireguard-openbsd-2ebf74108917abdb21bb63f1895547cfa1bf1326.zip |
__ARGS -> __P (why does everyone have to do this differently?)
Diffstat (limited to 'lib/libskey/put.c')
-rw-r--r-- | lib/libskey/put.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libskey/put.c b/lib/libskey/put.c index 83d65d795cd..fe05e160a05 100644 --- a/lib/libskey/put.c +++ b/lib/libskey/put.c @@ -8,7 +8,7 @@ * * Dictionary lookup and extraction. * - * $Id: put.c,v 1.2 1996/09/27 15:38:58 millert Exp $ + * $Id: put.c,v 1.3 1996/09/30 04:10:43 millert Exp $ */ #include <stdio.h> @@ -17,10 +17,10 @@ #include <ctype.h> #include "skey.h" -static unsigned long extract __ARGS ((char *s, int start, int length)); -static void standard __ARGS ((char *word)); -static void insert __ARGS ((char *s, int x, int start, int length)); -static int wsrch __ARGS ((char *w, int low, int high)); +static unsigned long extract __P ((char *s, int start, int length)); +static void standard __P ((char *word)); +static void insert __P ((char *s, int x, int start, int length)); +static int wsrch __P ((char *w, int low, int high)); /* Dictionary for integer-word translations */ char Wp[2048][4] = { |