Files
Upsilon/liba/include/private/macros.h
Romain Goyet 803ffda5bc Liba
2015-05-31 13:24:35 +02:00

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