mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-10-13 08:45:07 +02:00
14 lines
209 B
C
14 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 */
|