Commit c65006bb authored by Lisandro Dalcin's avatar Lisandro Dalcin

fix declaration in testcase helper header

parent 5dc64bb5
......@@ -2,13 +2,13 @@
extern "C" {
#endif
extern DL_EXPORT(void) e1(void);
extern DL_EXPORT(void *) e2(void);
extern DL_EXPORT(int*) e2(void);
#ifdef __cplusplus
}
#endif
void e1(void) {return;}
void *e2(void) {return 0;}
int* e2(void) {return 0;}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment