summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2018-06-20 14:35:06 +0200
committerAndy Wingo <wingo@pobox.com>2018-06-20 14:35:06 +0200
commitd04ff278f588411a447303354df9c05d1dd23473 (patch)
tree3045a16796d15b309be2d9a3ba215916ec713bb6
parentc495b44714788e0c7bdf56c703cecfcc30c536f6 (diff)
downloadguile-d04ff278f588411a447303354df9c05d1dd23473.tar.gz
Remove unneeded memmove.c and strerror.c files
* libguile/memmove.c: * libguile/strerror.c: Remove; these must be present for C99. * libguile/Makefile.am (EXTRA_libguile_@GUILE_EFFECTIVE_VERSION@_la_SOURCES): Remove files.
-rw-r--r--libguile/Makefile.am1
-rw-r--r--libguile/memmove.c22
-rw-r--r--libguile/strerror.c30
3 files changed, 0 insertions, 53 deletions
diff --git a/libguile/Makefile.am b/libguile/Makefile.am
index 1175f485e..53e1e7f92 100644
--- a/libguile/Makefile.am
+++ b/libguile/Makefile.am
@@ -459,7 +459,6 @@ all-local: guile-procedures.texi
EXTRA_libguile_@GUILE_EFFECTIVE_VERSION@_la_SOURCES = \
syscalls.h \
- memmove.c strerror.c \
dynl.c regex-posix.c \
posix.c net_db.c socket.c \
debug-malloc.c \
diff --git a/libguile/memmove.c b/libguile/memmove.c
deleted file mode 100644
index f2d453762..000000000
--- a/libguile/memmove.c
+++ /dev/null
@@ -1,22 +0,0 @@
-/* Wrapper to implement ANSI C's memmove using BSD's bcopy. */
-/* This function is in the public domain. --Per Bothner. */
-
-
-#include <sys/types.h>
-
-#ifdef __STDC__
-#define PTR void *
-#define CPTR const void *
-PTR memmove (PTR, CPTR, size_t);
-#else
-#define PTR char *
-#define CPTR char *
-PTR memmove ();
-#endif
-
-PTR
-memmove (PTR s1, CPTR s2, size_t n)
-{
- bcopy (s2, s1, n);
- return s1;
-}
diff --git a/libguile/strerror.c b/libguile/strerror.c
deleted file mode 100644
index c4c19c2fb..000000000
--- a/libguile/strerror.c
+++ /dev/null
@@ -1,30 +0,0 @@
-/* Turning errno values into English error messages.
- Copyright (C) 1985-1988,1993,1994,1995,2000-2001,2006,2018
- Free Software Foundation, Inc.
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public License
- as published by the Free Software Foundation; either version 3 of
- the License, or (at your option) any later version.
-
- This library is distributed in the hope that it will be useful, but
- WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- 02110-1301 USA
-*/
-
-char *
-strerror (int errnum)
-{
- extern char *sys_errlist[];
- extern int sys_nerr;
-
- if (errnum >= 0 && errnum < sys_nerr)
- return sys_errlist[errnum];
- return (char *) "Unknown error";
-}