diff options
author | briggs <briggs@cvs.openbsd.org> | 1997-04-13 17:08:36 +0000 |
---|---|---|
committer | briggs <briggs@cvs.openbsd.org> | 1997-04-13 17:08:36 +0000 |
commit | 28b9c4b09d13871c3b25ccaf4e08ffd6154645a8 (patch) | |
tree | 1fa1e11c1141cd147e82bd4d0b5e609291de2ffa /lib/libpthread | |
parent | 81f0257be1fd69b8bc4ada910672e0c43b4926c1 (diff) |
Prototype flockfile/funlockfile to clean up some warnings.
Diffstat (limited to 'lib/libpthread')
-rw-r--r-- | lib/libpthread/include/stdio.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libpthread/include/stdio.h b/lib/libpthread/include/stdio.h index 5819547d7b2..9efae3e47af 100644 --- a/lib/libpthread/include/stdio.h +++ b/lib/libpthread/include/stdio.h @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * from: @(#)stdio.h 5.17 (Berkeley) 6/3/91 - * $Id: stdio.h,v 1.1 1995/10/18 08:43:04 deraadt Exp $ $provenid: stdio.h,v 1.18 1994/02/07 03:32:06 proven Exp $ + * $Id: stdio.h,v 1.2 1997/04/13 17:08:35 briggs Exp $ $provenid: stdio.h,v 1.18 1994/02/07 03:32:06 proven Exp $ */ #ifndef _STDIO_H_ @@ -297,6 +297,8 @@ __BEGIN_DECLS int __srget __P((FILE *)); int __svfscanf __P((FILE *, const char *, va_list)); int __swbuf __P((int, FILE *)); +void flockfile __P((FILE *fp)); +void funlockfile __P((FILE *fp)); __END_DECLS /* |