diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-10-07 17:24:18 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-10-07 17:24:36 -0600 |
commit | 62e8081e0ac4a4c170bc536303f7a9bd3e91fd7b (patch) | |
tree | 2c40e8297ff0d423bf5e811fa7212345af6141de /libnetio/netio_posix.c | |
parent | b1b07aea8841d78e935e7de13d693a267709e711 (diff) |
tidy config
Diffstat (limited to 'libnetio/netio_posix.c')
-rw-r--r-- | libnetio/netio_posix.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/libnetio/netio_posix.c b/libnetio/netio_posix.c index 62320f2..f3e9fe0 100644 --- a/libnetio/netio_posix.c +++ b/libnetio/netio_posix.c @@ -24,11 +24,16 @@ #include <libnetio/netio.h> -/* common *********************************************************************/ +/* configuration **************************************************************/ -#define USE_CONFIG_NETIO_POSIX #include "config.h" +#ifndef CONFIG_NETIO_NUM_CONNS +# error config.h must define CONFIG_NETIO_NUM_CONNS +#endif + +/* common *********************************************************************/ + #define UNUSED(name) /* name __attribute__ ((unused)) */ static int sig_io = 0; |