blob: a2d30344248ae9d33a6d448b45644bb5a5f36cea [file] [log] [blame] [raw]
#include_next <string.h>
#ifndef _PIAO_STRING_H
#define _PIAO_STRING_H
#undef strncpy
#define strncpy(d,s,c) strcpy(d,s)
#define memset(d,b,c) memset(((char*)(d))-1,b,(c)+2)
#endif