/[emacs]/emacs/src/config.in
ViewVC logotype

Diff of /emacs/src/config.in

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.182 by lektu, Tue Feb 4 14:03:12 2003 UTC revision 1.183 by rlb, Mon Mar 3 18:31:22 2003 UTC
# Line 343  Boston, MA 02111-1307, USA.  */ Line 343  Boston, MA 02111-1307, USA.  */
343  /* Define to 1 if you have the `mbsinit' function. */  /* Define to 1 if you have the `mbsinit' function. */
344  #undef HAVE_MBSINIT  #undef HAVE_MBSINIT
345    
346    /* Define to 1 if you have the `memcmp' function. */
347    #undef HAVE_MEMCMP
348    
349  /* Define to 1 if you have the `memmove' function. */  /* Define to 1 if you have the `memmove' function. */
350  #undef HAVE_MEMMOVE  #undef HAVE_MEMMOVE
351    
# Line 1010  typedef unsigned size_t; Line 1013  typedef unsigned size_t;
1013  #  endif  #  endif
1014  #endif  #endif
1015    
1016  #ifndef HAVE_BCOPY  /* avoid deprecated functions */
1017  #define bcopy(a,b,s) memcpy (b,a,s)  #if HAVE_MEMCPY
1018  #endif  #  define bcopy(a,b,s) memcpy (b,a,s)
1019  #ifndef HAVE_BZERO  #endif
1020  #define bzero(a,s) memset (a,0,s)  #if HAVE_MEMSET
1021  #endif  #  define bzero(a,s) memset (a,0,s)
1022  #ifndef HAVE_BCMP  #endif
1023  #define BCMP memcmp  #if HAVE_MEMCMP
1024    #  define BCMP memcmp
1025    #  define bcmp memcmp
1026  #endif  #endif
1027    
1028  #endif /* EMACS_CONFIG_H */  #endif /* EMACS_CONFIG_H */

Legend:
Removed from v.1.182  
changed lines
  Added in v.1.183

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26