xref: /original-bsd/include/memory.h (revision 241757c4)
1 /*
2  * Copyright (c) 1985 Regents of the University of California.
3  * All rights reserved.  The Berkeley software License Agreement
4  * specifies the terms and conditions for redistribution.
5  *
6  *	@(#)memory.h	5.1 (Berkeley) 85/08/05
7  */
8 
9 /*
10  * Definitions of the Sys5 compat memory manipulation routines
11  */
12 
13 extern char *memccpy();
14 extern char *memchr();
15 extern int memcmp();
16 extern char *memcpy();
17 extern char *memset();
18