diff options
Diffstat (limited to 'libio/rewind.c')
-rw-r--r-- | libio/rewind.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libio/rewind.c b/libio/rewind.c index d30233e17e..2af2dd84d3 100644 --- a/libio/rewind.c +++ b/libio/rewind.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993 Free Software Foundation +/* Copyright (C) 1993, 1996 Free Software Foundation, Inc. This file is part of the GNU IO Library. This library is free software; you can redistribute it and/or modify it under the @@ -29,7 +29,7 @@ rewind (fp) _IO_FILE* fp; { CHECK_FILE (fp, ); - __libc_cleanup_region_start (&_IO_funlockfile, fp); + __libc_cleanup_region_start ((void (*) __P ((void *))) _IO_funlockfile, fp); _IO_flockfile (fp); _IO_rewind (fp); __libc_cleanup_region_end (1); |