diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2001-08-30 07:38:28 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2001-08-30 07:38:28 +0000 |
commit | b9a6bccdad5f3d2f0c9e0ed1d2d665ee341d056c (patch) | |
tree | 55cd4fa652a6522bfcf6a65f3407399b077b5354 /include | |
parent | d9512e762a745663c21937b79bc9a7f4173342f7 (diff) |
fix some const warnings
Diffstat (limited to 'include')
-rw-r--r-- | include/stdio.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/stdio.h b/include/stdio.h index 657802fecbb..4ee710cc327 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stdio.h,v 1.15 2000/12/06 17:18:42 deraadt Exp $ */ +/* $OpenBSD: stdio.h,v 1.16 2001/08/30 07:38:27 fgsch Exp $ */ /* $NetBSD: stdio.h,v 1.18 1996/04/25 18:29:21 jtc Exp $ */ /*- @@ -277,7 +277,7 @@ int fileno __P((FILE *)); void flockfile __P((FILE *)); int ftrylockfile __P((FILE *)); void funlockfile __P((FILE *)); -void _flockfile_debug __P((FILE *, const char *, int)); +void _flockfile_debug __P((FILE *, char *, int)); int getc_unlocked __P((FILE *)); int putc_unlocked __P((int, FILE *)); int getchar_unlocked __P((void)); |