| 90 | /* Test program */ |
| 91 | |
| 92 | static void *process(void * arg) |
| 93 | { |
| 94 | char *res; |
| 95 | res = str_accumulate("Result of "); |
| 96 | res = str_accumulate((char *) arg); |
| 97 | res = str_accumulate(" thread"); |
| 98 | printf("Thread %lx: \"%s\"\n", pthread_self(), res); |
| 99 | return NULL; |
| 100 | } |
| 101 | |
| 102 | int libc_ex4() |
| 103 | { |
nothing calls this directly
no test coverage detected