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 #
This commit is contained in:
christos 1998-11-15 17:21:08 +00:00
parent e7f7fdba9a
commit f8dfd806d0
1 changed files with 3 additions and 3 deletions

View File

@ -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