This library contains code that extends and simplifies different operations
for C language based programs.
Revision | 5efcb16d959f3f440ce3d38cb6648cdb5d714bd8 (tree) |
---|---|
Zeit | 2022-10-04 21:18:12 |
Autor | Sergey Gusarov <laborer2008@gmai...> |
Commiter | Sergey Gusarov |
Fixed bcc compile error
@@ -24,6 +24,10 @@ | ||
24 | 24 | // Emulate msvc here. |
25 | 25 | # define _MSC_VER 999 |
26 | 26 | |
27 | +# ifdef CT_COMPL_BCC | |
28 | +# define _inline __inline | |
29 | +# endif | |
30 | + | |
27 | 31 | # include "ctools/std/stdint.h" |
28 | 32 | |
29 | 33 | CT_BEGIN_EXTERNAL_HEADERS |
@@ -31,6 +35,10 @@ | ||
31 | 35 | CT_END_EXTERNAL_HEADERS |
32 | 36 | |
33 | 37 | # undef _MSC_VER |
38 | + | |
39 | +# ifdef CT_COMPL_BCC | |
40 | +# undef _inline | |
41 | +# endif | |
34 | 42 | #else |
35 | 43 | |
36 | 44 | CT_BEGIN_EXTERNAL_HEADERS |