]> pd.if.org Git - pdclib/blob - functions/string/strerror.c
Merged PDPCLIB and Therx code.
[pdclib] / functions / string / strerror.c
1 // ----------------------------------------------------------------------------
2 // $Id$
3 // ----------------------------------------------------------------------------
4 // Public Domain C Library - http://pdclib.sourceforge.net
5 // This code is Public Domain. Use, modify, and redistribute at will.
6 // ----------------------------------------------------------------------------
7
8 char * strerror( int errcode ) { /* TODO */ };
9
10 /* PDPC code - unreviewed
11 {
12     if (errnum == 0) return ("No error has occurred\n");
13     else return ("An error has occurred\n");
14 }
15 */