From 7e1c9e7d4f20543018fc8164f1b28cb4c3dc9424 Mon Sep 17 00:00:00 2001 From: fgsch <> Date: Thu, 30 Aug 2001 07:38:27 +0000 Subject: [PATCH] fix some const warnings --- src/include/stdio.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/stdio.h b/src/include/stdio.h index 657802fe..4ee710cc 100644 --- a/src/include/stdio.h +++ b/src/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));