emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/config.in


From: Rob Browning
Subject: [Emacs-diffs] Changes to emacs/src/config.in
Date: Mon, 03 Mar 2003 13:31:23 -0500

Index: emacs/src/config.in
diff -c emacs/src/config.in:1.182 emacs/src/config.in:1.183
*** emacs/src/config.in:1.182   Tue Feb  4 09:03:12 2003
--- emacs/src/config.in Mon Mar  3 13:31:22 2003
***************
*** 343,348 ****
--- 343,351 ----
  /* Define to 1 if you have the `mbsinit' function. */
  #undef HAVE_MBSINIT
  
+ /* Define to 1 if you have the `memcmp' function. */
+ #undef HAVE_MEMCMP
+ 
  /* Define to 1 if you have the `memmove' function. */
  #undef HAVE_MEMMOVE
  
***************
*** 1010,1023 ****
  #  endif
  #endif
  
! #ifndef HAVE_BCOPY
! #define bcopy(a,b,s) memcpy (b,a,s)
! #endif
! #ifndef HAVE_BZERO
! #define bzero(a,s) memset (a,0,s)
! #endif
! #ifndef HAVE_BCMP
! #define BCMP memcmp
  #endif
  
  #endif /* EMACS_CONFIG_H */
--- 1013,1028 ----
  #  endif
  #endif
  
! /* avoid deprecated functions */
! #if HAVE_MEMCPY
! #  define bcopy(a,b,s) memcpy (b,a,s)
! #endif
! #if HAVE_MEMSET
! #  define bzero(a,s) memset (a,0,s)
! #endif
! #if HAVE_MEMCMP
! #  define BCMP memcmp
! #  define bcmp memcmp
  #endif
  
  #endif /* EMACS_CONFIG_H */




reply via email to

[Prev in Thread] Current Thread [Next in Thread]