blob: e6e1a6dae9cf4842c0ad8c7cb13e347ff85e57bd [file] [log] [blame]
extern void abort (void);
extern int inside_main;
char *
stpcpy (char *dst, const char *src)
{
#ifdef __OPTIMIZE__
if (inside_main)
abort ();
#endif
while (*src != 0)
*dst++ = *src++;
*dst = 0;
return dst;
}