cis_config
hellofunc.h
1 /* Example include file. */
2 #ifndef HELLOFUNC_H_
3 #define HELLOFUNC_H_
4 
5 #ifdef __cplusplus
6 #define EXTERNC extern "C"
7 #else
8 #define EXTERNC
9 #endif
10 
11 EXTERNC void myPrint(const char * msg);
12 
13 #undef EXTERNC
14 #endif /*HELLOFUNC_H_*/