2015-07-06 11:59:37 +02:00

15 lines
204 B
C

#ifndef C_H
#define C_H
#ifdef __cplusplus
// This is required otherwise he C++ includer will look
// for the undefined mangled name.
extern "C" {
#endif
int f();
#ifdef __cplusplus
}
#endif
#endif