Browse Source

prototype for mempcpy

Rich Felker 14 years ago
parent
commit
d179807f6b
1 changed files with 1 additions and 0 deletions
  1. 1 0
      include/string.h

+ 1 - 0
include/string.h

@@ -75,6 +75,7 @@ char *strchrnul(const char *, int);
 char *strcasestr(const char *, const char *);
 char *strsep(char **, const char *);
 void *memrchr(const void *, int, size_t);
+void *mempcpy(void *, void *, size_t)
 #endif
 
 #ifdef __cplusplus