diff options
| author | Richard M. Stallman | 1995-05-06 20:15:46 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-05-06 20:15:46 +0000 |
| commit | c7f93f2840983a66cf3d4cafebf8d35b3cdf37ae (patch) | |
| tree | 7d47e1e8a66f1c7241a0690a756b838abd07600c /src | |
| parent | 01fadb4d84964b6c37d60daef587a46d397a10c7 (diff) | |
| download | emacs-c7f93f2840983a66cf3d4cafebf8d35b3cdf37ae.tar.gz emacs-c7f93f2840983a66cf3d4cafebf8d35b3cdf37ae.zip | |
(bcmp, bcopy): Fix backward BSTRING conditionals.
Diffstat (limited to 'src')
| -rw-r--r-- | src/sysdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sysdep.c b/src/sysdep.c index f73562efd5a..c971cb32242 100644 --- a/src/sysdep.c +++ b/src/sysdep.c | |||
| @@ -4995,7 +4995,7 @@ bzero (b, length) | |||
| 4995 | #endif /* no bzero */ | 4995 | #endif /* no bzero */ |
| 4996 | #endif /* BSTRING */ | 4996 | #endif /* BSTRING */ |
| 4997 | 4997 | ||
| 4998 | #if (defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY) | 4998 | #if (!defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY) |
| 4999 | #undef bcopy | 4999 | #undef bcopy |
| 5000 | 5000 | ||
| 5001 | /* Saying `void' requires a declaration, above, where bcopy is used | 5001 | /* Saying `void' requires a declaration, above, where bcopy is used |
| @@ -5023,7 +5023,7 @@ bcopy (b1, b2, length) | |||
| 5023 | } | 5023 | } |
| 5024 | #endif /* (defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY) */ | 5024 | #endif /* (defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY) */ |
| 5025 | 5025 | ||
| 5026 | #ifdef BSTRING | 5026 | #ifndef BSTRING |
| 5027 | #ifndef bcmp | 5027 | #ifndef bcmp |
| 5028 | int | 5028 | int |
| 5029 | bcmp (b1, b2, length) /* This could be a macro! */ | 5029 | bcmp (b1, b2, length) /* This could be a macro! */ |