1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
extern void abort (void); extern int inside_main; __attribute__ ((__noinline__)) char * stpcpy (char *dst, const char *src) { #ifdef __OPTIMIZE__ if (inside_main) abort (); #endif while (*src != 0) *dst++ = *src++; *dst = 0; return dst; }