diff options
author | Warner Losh <imp@FreeBSD.org> | 2002-02-02 06:24:13 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2002-02-02 06:24:13 +0000 |
commit | f9bcb0beb529e74510077ff052839d7ad2817950 (patch) | |
tree | bb89216bd31fd20d2f8d292f03ed0842028b958d /bin/date/extern.h | |
parent | 5dce647c1b3b206238c72385c0b16f62e508ec30 (diff) |
o __P has been reoved
o Old-style K&R declarations have been converted to new C89 style
o register has been removed
o prototype for main() has been removed (gcc3 makes it an error)
o int main(int argc, char *argv[]) is the preferred main definition.
o Attempt to not break style(9) conformance for declarations more than
they already are.
Approved by: arch@, new style(9)
Notes
Notes:
svn path=/head/; revision=90108
Diffstat (limited to 'bin/date/extern.h')
-rw-r--r-- | bin/date/extern.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/date/extern.h b/bin/date/extern.h index 4726eb6a97c3..17b35bbf06a1 100644 --- a/bin/date/extern.h +++ b/bin/date/extern.h @@ -34,4 +34,4 @@ * $FreeBSD$ */ -int netsettime __P((time_t)); +int netsettime(time_t); |