(bcmp, bcopy): Fix backward BSTRING conditionals.
This commit is contained in:
parent
01fadb4d84
commit
c7f93f2840
1 changed files with 2 additions and 2 deletions
|
@ -4995,7 +4995,7 @@ bzero (b, length)
|
|||
#endif /* no bzero */
|
||||
#endif /* BSTRING */
|
||||
|
||||
#if (defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY)
|
||||
#if (!defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY)
|
||||
#undef bcopy
|
||||
|
||||
/* Saying `void' requires a declaration, above, where bcopy is used
|
||||
|
@ -5023,7 +5023,7 @@ bcopy (b1, b2, length)
|
|||
}
|
||||
#endif /* (defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY) */
|
||||
|
||||
#ifdef BSTRING
|
||||
#ifndef BSTRING
|
||||
#ifndef bcmp
|
||||
int
|
||||
bcmp (b1, b2, length) /* This could be a macro! */
|
||||
|
|
Loading…
Add table
Reference in a new issue