4.3BSD says that bcopy and bzero are defined in strings.h, not string.h

This commit is contained in:
Michael Brown
2007-01-19 00:51:13 +00:00
parent a213876382
commit 1a0ca661c2
2 changed files with 11 additions and 1 deletions

View File

@@ -59,7 +59,6 @@ char * strpbrk(const char * cs,const char * ct);
char * strtok(char * s,const char * ct);
char * strsep(char **s, const char *ct);
void * memset(void * s,int c,size_t count);
char * bcopy(const char * src, char * dest, int count);
void * memmove(void * dest,const void *src,size_t count);
int __attribute__ (( pure )) memcmp(const void * cs,const void * ct,
size_t count);