1 /*	stdas.h	(CWI)	1.1	85/03/01	*/
2 /* STanDard memory Allocation and String manipulation function declarations */
3 
4 extern char *strcat();
5 extern char *strncat();
6 extern int strcmp();
7 extern int strncmp();
8 extern char *strcpy();
9 extern char *strncpy();
10 extern int strlen();
11 extern char *index();
12 extern char *rindex();
13 
14 extern char *malloc();
15 extern free();
16 extern char *realloc();
17 extern char *calloc();
18 
19 extern char *galloc();
20 extern char *gcalloc();
21 extern void gfree();
22