diff options
| author | Dave Love | 2002-11-18 16:15:15 +0000 |
|---|---|---|
| committer | Dave Love | 2002-11-18 16:15:15 +0000 |
| commit | cfae195296efaa7bebf40f407bea4fe62f2af5f8 (patch) | |
| tree | b6c9d75a7fdc83649fafc789eb8d897b11ceaf32 /src | |
| parent | a13ec137bb392b2cebe7773966be42449502aa38 (diff) | |
| download | emacs-cfae195296efaa7bebf40f407bea4fe62f2af5f8.tar.gz emacs-cfae195296efaa7bebf40f407bea4fe62f2af5f8.zip | |
(bcopy, bzero, bcmp, alloca): Don't define.
Diffstat (limited to 'src')
| -rw-r--r-- | src/m/delta.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/m/delta.h b/src/m/delta.h index a879580d02a..a09e65d5284 100644 --- a/src/m/delta.h +++ b/src/m/delta.h | |||
| @@ -119,10 +119,6 @@ Boston, MA 02111-1307, USA. */ | |||
| 119 | #endif | 119 | #endif |
| 120 | #define SIGNALS_VIA_CHARACTERS | 120 | #define SIGNALS_VIA_CHARACTERS |
| 121 | #define BROKEN_CLOSEDIR /* builtin closedir is interruptible */ | 121 | #define BROKEN_CLOSEDIR /* builtin closedir is interruptible */ |
| 122 | #undef HAVE_BCOPY /* b* functions are just stubs to mem* ones */ | ||
| 123 | #define bcopy(from,to,bytes) memcpy(to,from,bytes) | ||
| 124 | #define bzero(to,bytes) memset(to,0,bytes) | ||
| 125 | #define bcmp memcmp | ||
| 126 | #define memmove(t,f,s) safe_bcopy(f,t,s) /* for overlapping copies */ | 122 | #define memmove(t,f,s) safe_bcopy(f,t,s) /* for overlapping copies */ |
| 127 | #undef KERNEL_FILE | 123 | #undef KERNEL_FILE |
| 128 | #define KERNEL_FILE "/sysv68" | 124 | #define KERNEL_FILE "/sysv68" |
| @@ -151,8 +147,6 @@ Boston, MA 02111-1307, USA. */ | |||
| 151 | #endif /* HAVE_X_WINDOWS */ | 147 | #endif /* HAVE_X_WINDOWS */ |
| 152 | 148 | ||
| 153 | #ifdef __GNUC__ | 149 | #ifdef __GNUC__ |
| 154 | /* Use builtin alloca. Also be sure that no other ones are tried out. */ | ||
| 155 | # define alloca __builtin_alloca | ||
| 156 | /* Union lisp objects do not yet work as of 19.15. */ | 150 | /* Union lisp objects do not yet work as of 19.15. */ |
| 157 | /* # undef NO_UNION_TYPE */ | 151 | /* # undef NO_UNION_TYPE */ |
| 158 | 152 | ||