diff options
author | Sverker Eriksson <[email protected]> | 2016-11-22 14:22:19 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2016-11-22 14:22:19 +0100 |
commit | 9563cd5b296fe589c8abe357710fbb79bc766d09 (patch) | |
tree | 464ff57782299c2e42d937ab3428a651615bfdbf /erts/emulator/hipe/hipe_x86_signal.c | |
parent | 3d7b55f946162b5a129241dbe67397784a1ba1a5 (diff) | |
parent | 011242f927259aa477ebe488a3ee3c4e22081488 (diff) | |
download | otp-9563cd5b296fe589c8abe357710fbb79bc766d09.tar.gz otp-9563cd5b296fe589c8abe357710fbb79bc766d09.tar.bz2 otp-9563cd5b296fe589c8abe357710fbb79bc766d09.zip |
Merge branch 'sverker/Wundef'
Diffstat (limited to 'erts/emulator/hipe/hipe_x86_signal.c')
-rw-r--r-- | erts/emulator/hipe/hipe_x86_signal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/hipe/hipe_x86_signal.c b/erts/emulator/hipe/hipe_x86_signal.c index 50d08b96d3..1a34ce786c 100644 --- a/erts/emulator/hipe/hipe_x86_signal.c +++ b/erts/emulator/hipe/hipe_x86_signal.c @@ -51,7 +51,7 @@ #endif #include "hipe_signal.h" -#if __GLIBC__ == 2 && (__GLIBC_MINOR__ >= 3) +#if defined(__GLIBC__) && __GLIBC__ == 2 && (__GLIBC_MINOR__ >= 3) /* * __libc_sigaction() is the core routine. * Without libpthread, sigaction() and __sigaction() are both aliases |