/* strings.h - define standard string functions */

#ifndef	_STRINGS		/* once-only... */
#define	_STRINGS

#if defined(SYS5) && !defined(_AIX)
#include <string.h>
#define	index	strchr
#define	rindex	strrchr
#include <memory.h>
#define	bcopy(b1,b2,length)	(void) memmove (b2, b1, length)
#define	bcpy(b1,b2,length)	memcmp (b1, b2, length)
#define	bzero(b,length)		(void) memset (b, 0, length)
#else	/* SYS5 */
#include <strings.h>
#endif

char   *mktemp ();


char   *getenv ();
char   *calloc (), *malloc (), *realloc ();


#endif	/* not _STRINGS */
