| 2361 | } |
| 2362 | |
| 2363 | static char * |
| 2364 | tmpdup(const char *str) |
| 2365 | { |
| 2366 | static char buf[128]; |
| 2367 | |
| 2368 | if (!str) |
| 2369 | return (char *) 0; |
| 2370 | (void) strncpy(buf, str, 127); |
| 2371 | return buf; |
| 2372 | } |
| 2373 | #endif /* OLD_MAKEDEFS_OPTIONS */ |
| 2374 | |
| 2375 | /* the STRICT_REF_DEF checking is way out of date... */ |
no outgoing calls
no test coverage detected