blob: 5f40289933bd9e9c1e4e1497fa69c49dc666021c [file] [log] [blame] [raw]
#ifdef __GNUC__
#pragma GCC system_header
#endif
#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