mirror of
https://github.com/justinian/jsix.git
synced 2025-12-10 00:14:32 -08:00
Moving libc from its separate repo into this one, minor resulting build fixes, and a hacky way to add -I for libc headers in builds.
10 lines
155 B
C
10 lines
155 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
#define CPP_CHECK_BEGIN extern "C" {
|
|
#define CPP_CHECK_END }
|
|
#else
|
|
#define CPP_CHECK_BEGIN
|
|
#define CPP_CHECK_END
|
|
#endif
|