diff options
author | imp <imp@FreeBSD.org> | 2002-03-22 01:22:50 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2002-03-22 01:22:50 +0000 |
commit | 74d826c7a6e9f98072df5f7dba2b84aa516fe425 (patch) | |
tree | 6ba560b9c74ad4aa7b2711587ec42a969bdca745 /usr.bin/last | |
parent | ce819c0c139981d7bab5fe36a6074af74b01d185 (diff) | |
download | FreeBSD-src-74d826c7a6e9f98072df5f7dba2b84aa516fe425.zip FreeBSD-src-74d826c7a6e9f98072df5f7dba2b84aa516fe425.tar.gz |
remove __P
Diffstat (limited to 'usr.bin/last')
-rw-r--r-- | usr.bin/last/last.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/usr.bin/last/last.c b/usr.bin/last/last.c index eed36f5..5029a05 100644 --- a/usr.bin/last/last.c +++ b/usr.bin/last/last.c @@ -98,16 +98,16 @@ static time_t snaptime; /* if != 0, we will only * at this snapshot time */ -void addarg __P((int, char *)); -time_t dateconv __P((char *)); -void doentry __P((struct utmp *)); -void hostconv __P((char *)); -void onintr __P((int)); -void printentry __P((struct utmp *, struct ttytab *)); -char *ttyconv __P((char *)); -int want __P((struct utmp *)); -void usage __P((void)); -void wtmp __P((void)); +void addarg(int, char *); +time_t dateconv(char *); +void doentry(struct utmp *); +void hostconv(char *); +void onintr(int); +void printentry(struct utmp *, struct ttytab *); +char *ttyconv(char *); +int want(struct utmp *); +void usage(void); +void wtmp(void); void usage(void) |