mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-12-03 14:03:37 +08:00
10 lines
149 B
C
10 lines
149 B
C
|
#pragma once
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
#define EXTERN_C_BEGIN extern "C" {
|
||
|
#define EXTERN_C_END }
|
||
|
#else
|
||
|
#define EXTERN_C_BEGIN
|
||
|
#define EXTERN_C_END
|
||
|
#endif
|