1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-01 10:06:57 +03:00

* stdio/stdio.h (sys_errlist, _sys_errlist): Declare const.

This commit is contained in:
Roland McGrath
1995-10-26 03:38:19 +00:00
parent ff9bef7f88
commit f44f9c33df
3 changed files with 15 additions and 27 deletions

View File

@ -631,11 +631,11 @@ extern void perror __P ((__const char *__s));
#ifdef __USE_BSD
extern int sys_nerr;
extern char *sys_errlist[];
extern const char *const sys_errlist[];
#endif
#ifdef __USE_GNU
extern int _sys_nerr;
extern char *_sys_errlist[];
extern const char *const _sys_errlist[];
#endif