1 #pragma clang system_header
2 
3 void free(void *);
4 #define FREE_POINTER(x) free(x)
5 
6