/* Include bouncer for the BSD strings.h */

#ifndef _PORT_STRINGS_H
#define _PORT_STRINGS_H
#include <string.h>
#ifndef index
#define index strchr
#endif
#ifndef rindex
#define rindex strrchr
#endif
#ifndef bcopy
#define bcopy(src,dst,len) memcpy(dst,src,len)
#endif
#ifndef bzero
#define bzero(dst,len) memset(dst,0,len)
#endif
#ifndef bcmp
#define bcmp(src,dst,len) memcmp(dst,src,len)
#endif
#define getwd(p) getcwd(p,512)
#define random() rand()
#endif
