summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdio/local.h
diff options
context:
space:
mode:
authorpat <pat@openbsd.org>2005-03-31 18:36:29 +0000
committerpat <pat@openbsd.org>2005-03-31 18:36:29 +0000
commit9e8959400bf6323a88dbfd54158c26492eb3f44c (patch)
treeda30438c107274038a96aae8ef672007e5b2ae33 /lib/libc/stdio/local.h
parent+YFLAGS= (diff)
downloadwireguard-openbsd-9e8959400bf6323a88dbfd54158c26492eb3f44c.tar.xz
wireguard-openbsd-9e8959400bf6323a88dbfd54158c26492eb3f44c.zip
make sure the implementation matches the prototype..
char const * -> const char * ok otto@ deraadt@
Diffstat (limited to 'lib/libc/stdio/local.h')
-rw-r--r--lib/libc/stdio/local.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdio/local.h b/lib/libc/stdio/local.h
index 1183eed3f60..085cad26234 100644
--- a/lib/libc/stdio/local.h
+++ b/lib/libc/stdio/local.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: local.h,v 1.8 2005/03/30 18:51:49 pat Exp $ */
+/* $OpenBSD: local.h,v 1.9 2005/03/31 18:36:29 pat Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -41,7 +41,7 @@ int __sflush(FILE *);
FILE *__sfp(void);
int __srefill(FILE *);
int __sread(void *, char *, int);
-int __swrite(void *, char const *, int);
+int __swrite(void *, const char *, int);
fpos_t __sseek(void *, fpos_t, int);
int __sclose(void *);
void __sinit(void);