| 139 | ****************************************************************************/ |
| 140 | |
| 141 | static compiler_t get_compiler(char *ccname) |
| 142 | { |
| 143 | if (strstr(ccname, "ctc") != NULL) |
| 144 | { |
| 145 | return COMPILER_TASKING; |
| 146 | } |
| 147 | |
| 148 | return COMPILER_GNU; |
| 149 | } |
| 150 | |
| 151 | /* MinGW does not seem to provide strtok_r */ |
| 152 |
no test coverage detected