summaryrefslogtreecommitdiff
path: root/usr.sbin/httpd
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/httpd')
-rw-r--r--usr.sbin/httpd/src/include/ap_config.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.sbin/httpd/src/include/ap_config.h b/usr.sbin/httpd/src/include/ap_config.h
index 804c164d0e7..27c16b1b8e7 100644
--- a/usr.sbin/httpd/src/include/ap_config.h
+++ b/usr.sbin/httpd/src/include/ap_config.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ap_config.h,v 1.23 2009/03/10 10:56:40 martynas Exp $ */
+/* $OpenBSD: ap_config.h,v 1.24 2013/01/07 18:43:33 brad Exp $ */
/* ====================================================================
* The Apache Software License, Version 1.1
@@ -86,7 +86,11 @@ extern "C" {
* functions). Only do this in gcc 2.7 or later ... it may work
* on earlier stuff, but why chance it.
*/
+#ifdef __GNUC_STDC_INLINE__
+#define ap_inline __inline__ __attribute__((__gnu_inline__))
+#else
#define ap_inline __inline__
+#endif
#define USE_GNU_INLINE
#define ENUM_BITFIELD(e,n,w) e n : w