diff options
| author | Rob Browning | 2003-03-03 18:31:22 +0000 |
|---|---|---|
| committer | Rob Browning | 2003-03-03 18:31:22 +0000 |
| commit | 710ee5a968b14db059538f74d062302b18619f79 (patch) | |
| tree | 19520294006e54117a4aacc9634830487a715c46 /src | |
| parent | b0e442481b4718f1f372381e6be78ce7aaf7b522 (diff) | |
| download | emacs-710ee5a968b14db059538f74d062302b18619f79.tar.gz emacs-710ee5a968b14db059538f74d062302b18619f79.zip | |
*** empty log message ***
Diffstat (limited to 'src')
| -rw-r--r-- | src/config.in | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/src/config.in b/src/config.in index c86215d823f..628458ce91b 100644 --- a/src/config.in +++ b/src/config.in | |||
| @@ -343,6 +343,9 @@ Boston, MA 02111-1307, USA. */ | |||
| 343 | /* Define to 1 if you have the `mbsinit' function. */ | 343 | /* Define to 1 if you have the `mbsinit' function. */ |
| 344 | #undef HAVE_MBSINIT | 344 | #undef HAVE_MBSINIT |
| 345 | 345 | ||
| 346 | /* Define to 1 if you have the `memcmp' function. */ | ||
| 347 | #undef HAVE_MEMCMP | ||
| 348 | |||
| 346 | /* Define to 1 if you have the `memmove' function. */ | 349 | /* Define to 1 if you have the `memmove' function. */ |
| 347 | #undef HAVE_MEMMOVE | 350 | #undef HAVE_MEMMOVE |
| 348 | 351 | ||
| @@ -1010,14 +1013,16 @@ typedef unsigned size_t; | |||
| 1010 | # endif | 1013 | # endif |
| 1011 | #endif | 1014 | #endif |
| 1012 | 1015 | ||
| 1013 | #ifndef HAVE_BCOPY | 1016 | /* avoid deprecated functions */ |
| 1014 | #define bcopy(a,b,s) memcpy (b,a,s) | 1017 | #if HAVE_MEMCPY |
| 1018 | # define bcopy(a,b,s) memcpy (b,a,s) | ||
| 1015 | #endif | 1019 | #endif |
| 1016 | #ifndef HAVE_BZERO | 1020 | #if HAVE_MEMSET |
| 1017 | #define bzero(a,s) memset (a,0,s) | 1021 | # define bzero(a,s) memset (a,0,s) |
| 1018 | #endif | 1022 | #endif |
| 1019 | #ifndef HAVE_BCMP | 1023 | #if HAVE_MEMCMP |
| 1020 | #define BCMP memcmp | 1024 | # define BCMP memcmp |
| 1025 | # define bcmp memcmp | ||
| 1021 | #endif | 1026 | #endif |
| 1022 | 1027 | ||
| 1023 | #endif /* EMACS_CONFIG_H */ | 1028 | #endif /* EMACS_CONFIG_H */ |