Return True if the C compiler is gcc
(self)
| 418 | return check_restrict(self) |
| 419 | |
| 420 | def check_compiler_gcc(self): |
| 421 | """Return True if the C compiler is gcc""" |
| 422 | return check_compiler_gcc(self) |
| 423 | |
| 424 | def check_gcc_function_attribute(self, attribute, name): |
| 425 | return check_gcc_function_attribute(self, attribute, name) |
nothing calls this directly
no test coverage detected