summaryrefslogtreecommitdiff
path: root/lib/libc/include
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>1998-11-15 17:21:08 +0000
committerchristos <christos@NetBSD.org>1998-11-15 17:21:08 +0000
commitf8dfd806d0341d320cb25c1e7e8ee09088d745af (patch)
treef55c294dd5905ed70c670f5f47255701684e8800 /lib/libc/include
parente7f7fdba9a2ceba2e63bb84ca8a38c2624b7bf1c (diff)
in the __str{error,signal} functions make the third argument size_t since
it is really a size. This does not affect the external interface, so there should be no reason to bump the libc #
Diffstat (limited to 'lib/libc/include')
-rw-r--r--lib/libc/include/extern.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/include/extern.h b/lib/libc/include/extern.h
index a0edd0e7e11..f4cd60f0d4e 100644
--- a/lib/libc/include/extern.h
+++ b/lib/libc/include/extern.h
@@ -1,4 +1,4 @@
-/* $NetBSD: extern.h,v 1.3 1998/07/26 13:36:34 mycroft Exp $ */
+/* $NetBSD: extern.h,v 1.4 1998/11/15 17:21:08 christos Exp $ */
/*
* Copyright (c) 1997 Christos Zoulas. All rights reserved.
@@ -31,8 +31,8 @@
__BEGIN_DECLS
int __getlogin __P((char *, size_t));
-const char *__strerror __P((int , char *, int));
-const char *__strsignal __P((int , char *, int));
+const char *__strerror __P((int , char *, size_t));
+const char *__strsignal __P((int , char *, size_t));
char *__dtoa __P((double, int, int, int *, int *, char **));
int __sysctl __P((int *, unsigned int, void *, size_t *, void *, size_t));
__END_DECLS