diff options
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! */ |