mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
13 lines
196 B
C
13 lines
196 B
C
#ifndef LIBA_MACROS_H
|
|
#define LIBA_MACROS_H
|
|
|
|
#ifdef __cplusplus
|
|
#define LIBA_BEGIN_DECLS extern "C" {
|
|
#define LIBA_END_DECLS }
|
|
#else
|
|
#define LIBA_BEGIN_DECLS
|
|
#define LIBA_END_DECLS
|
|
#endif
|
|
|
|
#endif
|