diff options
author | David Robillard <d@drobilla.net> | 2020-12-31 15:36:04 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-12-31 15:36:04 +0100 |
commit | ad23cd354165b6c2926d8f23636010a3e0ea85ea (patch) | |
tree | 093d9123bafc51e07c6e3ee0c9d0d54593b96fe7 /include | |
parent | ed9a6e98b8e4e010117e1228333569aa31c51d9e (diff) | |
download | zix-ad23cd354165b6c2926d8f23636010a3e0ea85ea.tar.gz zix-ad23cd354165b6c2926d8f23636010a3e0ea85ea.tar.bz2 zix-ad23cd354165b6c2926d8f23636010a3e0ea85ea.zip |
Remove ZIX_PRIVATE and ZIX_INLINE mechanisms
A normal C library ought to be good enough for anybody.
Diffstat (limited to 'include')
-rw-r--r-- | include/zix/common.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/zix/common.h b/include/zix/common.h index 865d232..0191cca 100644 --- a/include/zix/common.h +++ b/include/zix/common.h @@ -38,13 +38,8 @@ # else # define ZIX_API ZIX_LIB_IMPORT # endif -# define ZIX_PRIVATE static -#elif defined(ZIX_INLINE) -# define ZIX_API static inline -# define ZIX_PRIVATE static inline #else # define ZIX_API -# define ZIX_PRIVATE static #endif #ifdef __GNUC__ |