summaryrefslogtreecommitdiffstats
path: root/include/zix
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-12-31 15:36:04 +0100
committerDavid Robillard <d@drobilla.net>2020-12-31 15:36:04 +0100
commitad23cd354165b6c2926d8f23636010a3e0ea85ea (patch)
tree093d9123bafc51e07c6e3ee0c9d0d54593b96fe7 /include/zix
parented9a6e98b8e4e010117e1228333569aa31c51d9e (diff)
downloadzix-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/zix')
-rw-r--r--include/zix/common.h5
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__