diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-03-26 19:56:04 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-03-26 19:56:04 +0000 |
commit | 572705e4dcb1839a3b1affef49d943553af2f27a (patch) | |
tree | 716a24e9fac9e5a5abf367c11c8bb0ea3f875f20 /libio/iofopncook.c | |
parent | 2e6f096fd925850d489df069fb016f7aef35585c (diff) | |
download | glibc-572705e4dcb1839a3b1affef49d943553af2f27a.tar.gz glibc-572705e4dcb1839a3b1affef49d943553af2f27a.tar.xz glibc-572705e4dcb1839a3b1affef49d943553af2f27a.zip |
Remove K&R prototypes.
Diffstat (limited to 'libio/iofopncook.c')
-rw-r--r-- | libio/iofopncook.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/libio/iofopncook.c b/libio/iofopncook.c index 419b02d6da..59034c7db4 100644 --- a/libio/iofopncook.c +++ b/libio/iofopncook.c @@ -29,13 +29,12 @@ /* Prototyped for local functions. */ -static _IO_ssize_t _IO_cookie_read __P ((register _IO_FILE* fp, void* buf, - _IO_ssize_t size)); -static _IO_ssize_t _IO_cookie_write __P ((register _IO_FILE* fp, - const void* buf, _IO_ssize_t size)); -static _IO_off64_t _IO_cookie_seek __P ((_IO_FILE *fp, _IO_off64_t offset, - int dir)); -static int _IO_cookie_close __P ((_IO_FILE* fp)); +static _IO_ssize_t _IO_cookie_read (register _IO_FILE* fp, void* buf, + _IO_ssize_t size); +static _IO_ssize_t _IO_cookie_write (register _IO_FILE* fp, + const void* buf, _IO_ssize_t size); +static _IO_off64_t _IO_cookie_seek (_IO_FILE *fp, _IO_off64_t offset, int dir); +static int _IO_cookie_close (_IO_FILE* fp); static _IO_ssize_t |