cbindgen/tests/expectations/include_guard.compat.c
2019-06-08 19:27:58 +09:00

15 lines
209 B
C

#ifndef INCLUDE_GUARD_H
#define INCLUDE_GUARD_H
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
void root(void);
#ifdef __cplusplus
} // extern "C"
#endif // __cplusplus
#endif /* INCLUDE_GUARD_H */