summaryrefslogtreecommitdiffstats
path: root/doc/tools/src2html1.4a/Ctags/strerror.c
diff options
context:
space:
mode:
Diffstat (limited to 'doc/tools/src2html1.4a/Ctags/strerror.c')
-rw-r--r--doc/tools/src2html1.4a/Ctags/strerror.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/tools/src2html1.4a/Ctags/strerror.c b/doc/tools/src2html1.4a/Ctags/strerror.c
new file mode 100644
index 0000000000..7a82b869bf
--- /dev/null
+++ b/doc/tools/src2html1.4a/Ctags/strerror.c
@@ -0,0 +1,6 @@
+char *strerror(i)
+ int i;
+ {
+ extern char *sys_errlist[];
+ return sys_errlist[i];
+ }