mirror of
https://github.com/libretro/cpp-cheat.git
synced 2025-04-13 08:40:27 +00:00
15 lines
204 B
C
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
|