diff options
author | Sverker Eriksson <[email protected]> | 2016-11-09 18:41:43 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2016-11-17 17:18:10 +0100 |
commit | 27e865d01ad49664897662ccc123d825505c0ff6 (patch) | |
tree | 8e2d2a54e64ea47e86f24fc96dc599b83702df6e /erts/emulator/sys/unix | |
parent | e770c849d011d8d5872e5f1400d77c25a9268186 (diff) | |
download | otp-27e865d01ad49664897662ccc123d825505c0ff6.tar.gz otp-27e865d01ad49664897662ccc123d825505c0ff6.tar.bz2 otp-27e865d01ad49664897662ccc123d825505c0ff6.zip |
erts: Fix all -Wundef errors
Diffstat (limited to 'erts/emulator/sys/unix')
-rw-r--r-- | erts/emulator/sys/unix/erl_unix_sys.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/sys/unix/erl_unix_sys.h b/erts/emulator/sys/unix/erl_unix_sys.h index b64b0d87f6..bd554238b7 100644 --- a/erts/emulator/sys/unix/erl_unix_sys.h +++ b/erts/emulator/sys/unix/erl_unix_sys.h @@ -46,10 +46,10 @@ #include <signal.h> #include <setjmp.h> -#if HAVE_SYS_SOCKETIO_H +#ifdef HAVE_SYS_SOCKETIO_H # include <sys/socketio.h> #endif -#if HAVE_SYS_SOCKIO_H +#ifdef HAVE_SYS_SOCKIO_H # include <sys/sockio.h> #endif |