(bcopy, bzero, bcmp): Don't define.
This commit is contained in:
parent
06c3eeed12
commit
04dbfa089e
3 changed files with 4 additions and 13 deletions
|
|
@ -1,3 +1,7 @@
|
|||
2002-11-19 Dave Love <fx@gnu.org>
|
||||
|
||||
* s/usg5-4.h, sco4.h (bcopy, bzero, bcmp): Don't define.
|
||||
|
||||
2002-11-18 Jason Rumney <jasonr@gnu.org>
|
||||
|
||||
* w32fns.c (x_build_heuristic_mask): Filter palette info from color.
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue