update from main archive 961001
[glibc.git] / libio / rewind.c
blob2af2dd84d3fe7470d91bcbdad0f2cedc68ce84b1
1 /* Copyright (C) 1993, 1996 Free Software Foundation, Inc.
3 This file is part of the GNU IO Library. This library is free
4 software; you can redistribute it and/or modify it under the
5 terms of the GNU General Public License as published by the
6 Free Software Foundation; either version 2, or (at your option)
7 any later version.
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this library; see the file COPYING. If not, write to the Free
16 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 As a special exception, if you link this library with files
19 compiled with a GNU compiler to produce an executable, this does not cause
20 the resulting executable to be covered by the GNU General Public License.
21 This exception does not however invalidate any other reasons why
22 the executable file might be covered by the GNU General Public License. */
24 #include "libioP.h"
25 #include "stdio.h"
27 void
28 rewind (fp)
29 _IO_FILE* fp;
31 CHECK_FILE (fp, );
32 __libc_cleanup_region_start ((void (*) __P ((void *))) _IO_funlockfile, fp);
33 _IO_flockfile (fp);
34 _IO_rewind (fp);
35 __libc_cleanup_region_end (1);