]> pd.if.org Git - pdclib/blobdiff - functions/string/strerror.c
Merged PDPCLIB and Therx code.
[pdclib] / functions / string / strerror.c
index 48dba0df56a1877927f094d3712189ca25633d43..252671413656e57060d022a22cf1d93ce9e41f0a 100644 (file)
@@ -6,3 +6,10 @@
 // ----------------------------------------------------------------------------
 
 char * strerror( int errcode ) { /* TODO */ };
+
+/* PDPC code - unreviewed
+{
+    if (errnum == 0) return ("No error has occurred\n");
+    else return ("An error has occurred\n");
+}
+*/