diff options
author | Warner Losh <imp@FreeBSD.org> | 2002-03-22 01:42:45 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2002-03-22 01:42:45 +0000 |
commit | 3f330d7d1a3fe98c53faf01d0f30c0a9fbb37c41 (patch) | |
tree | f17746dd42b66c7b55fe407e00b5fc176ebe67a5 /usr.bin/ul | |
parent | d3cb5ded92a4fcf21400c9742ca884549bebc99e (diff) | |
download | src-3f330d7d1a3fe98c53faf01d0f30c0a9fbb37c41.tar.gz src-3f330d7d1a3fe98c53faf01d0f30c0a9fbb37c41.zip |
Notes
Diffstat (limited to 'usr.bin/ul')
-rw-r--r-- | usr.bin/ul/ul.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/usr.bin/ul/ul.c b/usr.bin/ul/ul.c index 409bae8cc7f2..442687778ea2 100644 --- a/usr.bin/ul/ul.c +++ b/usr.bin/ul/ul.c @@ -85,18 +85,18 @@ int halfpos; int upln; int iflag; -static void usage __P((void)); -void setnewmode __P((int)); -void initcap __P((void)); -void reverse __P((void)); -int outchar __P((int)); -void fwd __P((void)); -void initbuf __P((void)); -void iattr __P((void)); -void overstrike __P((void)); -void flushln __P((void)); -void filter __P((FILE *)); -void outc __P((int)); +static void usage(void); +void setnewmode(int); +void initcap(void); +void reverse(void); +int outchar(int); +void fwd(void); +void initbuf(void); +void iattr(void); +void overstrike(void); +void flushln(void); +void filter(FILE *); +void outc(int); #define PRINT(s) if (s == NULL) /* void */; else tputs(s, 1, outchar) |