diff options
author | 2010-07-26 07:08:22 +0000 | |
---|---|---|
committer | 2010-07-26 07:08:22 +0000 | |
commit | 1cad1807d8a5a58e9d592912f0cb5fa1286eb16b (patch) | |
tree | 99419b4408d0b857afe68cf98ff0b7f52e29fe3c | |
parent | Make one more Sonix chipset cam work with 640x480 by a) adding it to the (diff) | |
download | wireguard-openbsd-1cad1807d8a5a58e9d592912f0cb5fa1286eb16b.tar.xz wireguard-openbsd-1cad1807d8a5a58e9d592912f0cb5fa1286eb16b.zip |
Always force GNU inline semantics here as well.
-rw-r--r-- | include/signal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/signal.h b/include/signal.h index af3412f5ca9..6af20ad0f5d 100644 --- a/include/signal.h +++ b/include/signal.h @@ -1,4 +1,4 @@ -/* $OpenBSD: signal.h,v 1.12 2008/04/29 14:44:04 kettenis Exp $ */ +/* $OpenBSD: signal.h,v 1.13 2010/07/26 07:08:22 kettenis Exp $ */ /* $NetBSD: signal.h,v 1.8 1996/02/29 00:04:57 jtc Exp $ */ /*- @@ -63,7 +63,7 @@ int sigprocmask(int, const sigset_t *, sigset_t *); int sigsuspend(const sigset_t *); #if defined(__GNUC__) -# if defined(__GNUC_STDC_INLINE__) +# if __GNUC_PREREQ__(4, 2) #define __SIGNAL_INLINE extern __inline __attribute((__gnu_inline__)) # else #define __SIGNAL_INLINE extern __inline |