Added declarations of common str*() functions

This commit is contained in:
Hallvard Furuseth 1998-11-15 21:52:56 +00:00
parent d0942df6c9
commit 63a818078c

View File

@ -11,6 +11,8 @@
# define strrchr rindex
# endif
char *strchr (), *strrchr ();
char *strcpy (), *strncpy (), *strcat (), *strncat ();
int strcmp (), strncmp (), memcmp ();
# ifndef HAVE_MEMCPY
# define memcpy(d, s, n) bcopy ((s), (d), (n))