about summary refs log tree commit diff
path: root/include/sys
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-09-02 12:46:06 -0400
committerRich Felker <dalias@aerifal.cx>2012-09-02 12:46:06 -0400
commitfb247fafa04ee52dda816355ab0461132297b9a4 (patch)
tree25c815d12a2beb2f9faaa0cc0308c1274beded6e /include/sys
parent3f62f76cab46fbd28248ed251a88278c6ea1be3a (diff)
downloadmusl-fb247fafa04ee52dda816355ab0461132297b9a4.tar.gz
musl-fb247fafa04ee52dda816355ab0461132297b9a4.tar.xz
musl-fb247fafa04ee52dda816355ab0461132297b9a4.zip
avoid "inline" in public headers for strict c89 compatibility
while musl itself requires a c99 compiler, some applications insist on
being compiled with c89 compilers, and use of "inline" in the headers
was breaking them. much of this had been avoided already by just
skipping the inline keyword in pre-c99 compilers or modes, but this
new unified solution is cleaner and may/should result in better code
generation in the default gcc configuration.
Diffstat (limited to 'include/sys')
-rw-r--r--include/sys/syscall.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/sys/syscall.h b/include/sys/syscall.h
index 901941aa..154e5ab5 100644
--- a/include/sys/syscall.h
+++ b/include/sys/syscall.h
@@ -4,6 +4,10 @@
 extern "C" {
 #endif
 
+#if __STDC_VERSION__ >= 199901L || defined(__cplusplus)
+#define __inline inline
+#endif
+
 long __syscall_ret(unsigned long);
 long __syscall(long, ...);
 long syscall(long, ...);