14 lines
187 B
C
14 lines
187 B
C
|
#ifndef FLECS_OS_API_STDCPP_H
|
||
|
#define FLECS_OS_API_STDCPP_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
extern void stdcpp_set_os_api(void);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|