| #include "stdio.h"
/* Should be */
#include <stdio.h>
|
Using < and > instead of " changes where the compiler is looking for the header. For system header (header provided by xcode) you should use < and >, for the headers of your project you should use ". Here is
how it works with msvc, but I guess it works in a similar way with clang.