The validation fails on `stdio.h` because it now uses C99 features: ``` extern FILE *fopen (const char *__restrict __filename, const char *__restrict __modes) ``` `__restrict` is a C99 feature, and this compiler only supports C89.