Module Name: src Committed By: christos Date: Thu Mar 15 13:23:10 UTC 2012
Modified Files: src/lib/libc/stdio: local.h Log Message: fix signature. To generate a diff of this commit: cvs rdiff -u -r1.32 -r1.33 src/lib/libc/stdio/local.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/lib/libc/stdio/local.h diff -u src/lib/libc/stdio/local.h:1.32 src/lib/libc/stdio/local.h:1.33 --- src/lib/libc/stdio/local.h:1.32 Thu Mar 15 07:46:08 2012 +++ src/lib/libc/stdio/local.h Thu Mar 15 09:23:10 2012 @@ -1,4 +1,4 @@ -/* $NetBSD: local.h,v 1.32 2012/03/15 11:46:08 christos Exp $ */ +/* $NetBSD: local.h,v 1.33 2012/03/15 13:23:10 christos Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -51,7 +51,7 @@ extern FILE *__sfp(void); extern void __sfpinit(FILE *); extern int __srefill(FILE *); extern int __sread(void *, char *, int); -extern int __swrite(void *, char * const, int); +extern int __swrite(void *, char const *, int); extern off_t __sseek(void *, off_t, int); extern int __sclose(void *); extern void __sinit(void);