summaryrefslogtreecommitdiffstats
path: root/Python/strerror.c
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2008-03-18 04:09:00 (GMT)
committerBrett Cannon <bcannon@gmail.com>2008-03-18 04:09:00 (GMT)
commitaa5778d1b886f7a4e47855229c8b223b6b39e317 (patch)
tree1a091419eea1f0060e3e46741b63cd24b9257c2d /Python/strerror.c
parentb7ec8e5a9e1e48aed6c217f505fa38b7461e0989 (diff)
downloadcpython-aa5778d1b886f7a4e47855229c8b223b6b39e317.zip
cpython-aa5778d1b886f7a4e47855229c8b223b6b39e317.tar.gz
cpython-aa5778d1b886f7a4e47855229c8b223b6b39e317.tar.bz2
Remove our implementation of memmove() and strerror(); both are in the C89
standard library.
Diffstat (limited to 'Python/strerror.c')
-rw-r--r--Python/strerror.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/Python/strerror.c b/Python/strerror.c
deleted file mode 100644
index 55f8342..0000000
--- a/Python/strerror.c
+++ /dev/null
@@ -1,19 +0,0 @@
-
-/* PD implementation of strerror() for systems that don't have it.
- Author: Guido van Rossum, CWI Amsterdam, Oct. 1990, <guido@cwi.nl>. */
-
-#include <stdio.h>
-#include "Python.h"
-
-extern int sys_nerr;
-extern char *sys_errlist[];
-
-char *
-strerror(int err)
-{
- static char buf[20];
- if (err >= 0 && err < sys_nerr)
- return sys_errlist[err];
- PyOS_snprintf(buf, sizeof(buf), "Unknown errno %d", err);
- return buf;
-}