diff options
author | 1997-04-13 17:08:35 +0000 | |
---|---|---|
committer | 1997-04-13 17:08:35 +0000 | |
commit | 5c7cad0b6d0a4bcc1073b9510dad79464278af3a (patch) | |
tree | ea3c7f9314227dd0b56355768a1cfbfa80748416 /lib/libpthread/include | |
parent | s/MACHINE/MACHINE_ARCH/ -- Nothing here should be MACHINE-specific. (diff) | |
download | wireguard-openbsd-5c7cad0b6d0a4bcc1073b9510dad79464278af3a.tar.xz wireguard-openbsd-5c7cad0b6d0a4bcc1073b9510dad79464278af3a.zip |
Prototype flockfile/funlockfile to clean up some warnings.
Diffstat (limited to 'lib/libpthread/include')
-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 b53fd2322c3..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.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 /* |