1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
extern int inside_main; extern void abort(void); __attribute__ ((__noinline__)) 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; }