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