summaryrefslogtreecommitdiff
path: root/tests/compile/excvalcheck.h
blob: 4c92acd2b0261db929fce551b50d582d93b4013d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifdef __cplusplus
extern "C" {
#endif
extern DL_EXPORT(int) spam(void);
extern DL_EXPORT(void) grail(void);
extern DL_EXPORT(char *)tomato(void);
#ifdef __cplusplus
}
#endif

int spam(void) {return 0;}
void grail(void) {return;}
char *tomato(void) {return 0;}