aboutsummaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2016-05-13 09:04:30 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2016-05-16 20:58:47 +0200
commit03a3699b66574def9db2a455e105582815011dba (patch)
tree739a2f482d93a091567a25850ec46a00163d40c0 /misc.c
parent6bad8ffe608be1dcabc7e58af819d7fb12f2e149 (diff)
downloadslirp-03a3699b66574def9db2a455e105582815011dba.zip
slirp-03a3699b66574def9db2a455e105582815011dba.tar.gz
slirp-03a3699b66574def9db2a455e105582815011dba.tar.bz2
slirp: Remove obsolete backward-compatibility cruft
The slirp code does not use index() and gethostid() anymore, so these parts can be removed without problems. memmove() and strerror() should be available on each of the supported platforms nowadays, too, so these wrappers are also not needed anymore. And we certainly also do not support Ultrix anymore, so no need to keep the code for this platform anymore. Signed-off-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/misc.c b/misc.c
index 4ba970b..b8282cd 100644
--- a/misc.c
+++ b/misc.c
@@ -57,25 +57,6 @@ int add_exec(struct ex_list **ex_ptr, int do_pty, char *exec,
return 0;
}
-#ifndef HAVE_STRERROR
-
-/*
- * For systems with no strerror
- */
-
-extern int sys_nerr;
-extern char *sys_errlist[];
-
-char *strerror(error) int error;
-{
- if (error < sys_nerr)
- return sys_errlist[error];
- else
- return "Unknown error.";
-}
-
-#endif
-
#ifdef _WIN32