X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fperror.c;h=23ce68bd356cc11e997dcdabf4873b32156b2204;hb=10f020f1a39804bbef8cd1cf35ef7c9a8e75c7d6;hp=bf3b3afee1c1bf0028218f657263853c0ffcc7a6;hpb=33515db12d3cc5e53a8bdea58d2cde299cba2267;p=pdclib.old diff --git a/functions/stdio/perror.c b/functions/stdio/perror.c index bf3b3af..23ce68b 100644 --- a/functions/stdio/perror.c +++ b/functions/stdio/perror.c @@ -11,6 +11,7 @@ #ifndef REGTEST #include +#include /* TODO: Doing this via a static array is not the way to do it. */ void perror( const char * s ) @@ -19,7 +20,14 @@ void perror( const char * s ) { fprintf( stderr, "%s: ", s ); } - fprintf( stderr, "%s\n", _PDCLIB_errno_texts[ errno ] ); + if ( errno >= _PDCLIB_ERRNO_MAX ) + { + fprintf( stderr, "Unknown error\n" ); + } + else + { + fprintf( stderr, "%s\n", _PDCLIB_lconv._PDCLIB_errno_texts[errno] ); + } return; }