diff options
author | Dave Love <fx@gnu.org> | 2002-11-19 14:47:11 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2002-11-19 14:47:11 +0000 |
commit | 04dbfa089e35a28b358e404a0b6dfe6ad133af2b (patch) | |
tree | a92fd59ab247015f8b2f305d37baa02a5d27f14b /src/s | |
parent | 06c3eeed12388e8e1e64f355e2629f43d3eaef3a (diff) | |
download | emacs-04dbfa089e35a28b358e404a0b6dfe6ad133af2b.tar.gz |
(bcopy, bzero, bcmp): Don't define.
Diffstat (limited to 'src/s')
-rw-r--r-- | src/s/sco4.h | 5 | ||||
-rw-r--r-- | src/s/usg5-4.h | 8 |
2 files changed, 0 insertions, 13 deletions
diff --git a/src/s/sco4.h b/src/s/sco4.h index e4546b88a38..6015ec66385 100644 --- a/src/s/sco4.h +++ b/src/s/sco4.h @@ -128,11 +128,6 @@ Boston, MA 02111-1307, USA. */ #define MAIL_PROGRAM_NAME "/usr/lib/mail/execmail" #endif -/* miano@acosta.enet.dec.com says these are needed. */ -#define bcopy(b1,b2,len) memmove (b2, b1, len) -#define bzero(b,len) memset (b, 0, len) -#define bcmp(b1,b2,len) memcmp (b1, b2, len) - /* Tell process_send_signal to use VSUSP instead of VSWTCH. */ #define PREFER_VSUSP diff --git a/src/s/usg5-4.h b/src/s/usg5-4.h index 097bded32fe..49554b9456f 100644 --- a/src/s/usg5-4.h +++ b/src/s/usg5-4.h @@ -189,14 +189,6 @@ Boston, MA 02111-1307, USA. */ So give it a try. */ #define HAVE_SOCKETS -#ifndef HAVE_BCOPY -#define bcopy(src,dst,n) memmove (dst,src,n) -#define bzero(s,n) memset (s,0,n) -#endif -#ifndef HAVE_BCMP -#define bcmp(src,dst,n) memcmp (src,dst,n) -#endif - /* Markus Weiand <weiand@khof.com> says this is needed for Motif on SINIX. */ #undef LIBS_SYSTEM |