diff options
author | guido <guido@FreeBSD.org> | 1994-06-02 20:25:30 +0000 |
---|---|---|
committer | guido <guido@FreeBSD.org> | 1994-06-02 20:25:30 +0000 |
commit | d14fac757a0ff9e57fe8ed77d238656f6db472cf (patch) | |
tree | 0759541af9483d7bd862615900161be036428d6e /lib/libskey/put.c | |
parent | 2fdc4a4a0a8975dff8a67c11f60407816a4142c6 (diff) | |
download | FreeBSD-src-d14fac757a0ff9e57fe8ed77d238656f6db472cf.zip FreeBSD-src-d14fac757a0ff9e57fe8ed77d238656f6db472cf.tar.gz |
Move skey.h to /usr/include so other packages will be able to use
libskey. (such as wu-ftp and xdm).
Editted skey so it matches the standard /usr/include way.
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 1ef1ec0..0f62d22 100644 --- a/lib/libskey/put.c +++ b/lib/libskey/put.c @@ -2,12 +2,12 @@ #include <string.h> #include <assert.h> #include <ctype.h> -#include "skey.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] = { |