1 #ifndef UNSUPPORTED_API_H 2 #define UNSUPPORTED_API_H 3 4 #include <stdio.h> 5 unsupported_api(const char * func)6 static inline void unsupported_api(const char *func) 7 { 8 fprintf(stderr, "[ERR]Unsupported API %s\n", func); 9 } 10 11 #endif 12