diff options
| author | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-04 22:01:49 +0300 |
|---|---|---|
| committer | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-04 22:01:49 +0300 |
| commit | 07cbc4fee671f8bf1546b34f259e58d63e942803 (patch) | |
| tree | 46ca297e7ac81e642fa6d8f7730892fc9d51a80d | |
| parent | 17962fd076e857921c374b4d705a54d5e1055178 (diff) | |
| download | Project-Tick-07cbc4fee671f8bf1546b34f259e58d63e942803.tar.gz Project-Tick-07cbc4fee671f8bf1546b34f259e58d63e942803.zip | |
NOISSUE fix update preprocessor directives to use #ifdef instead of #if
Signed-off-by: Mehmet Samet Duman <yongdohyun@projecttick.org>
| -rw-r--r-- | mnv/src/pty.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mnv/src/pty.c b/mnv/src/pty.c index 2ea31b3773..4c0e6977a3 100644 --- a/mnv/src/pty.c +++ b/mnv/src/pty.c @@ -50,7 +50,7 @@ # include <sys/ioctl.h> #endif -#if HAVE_STROPTS_H +#ifdef HAVE_STROPTS_H # include <sys/types.h> # ifdef sinix # define buf_T __system_buf_t__ @@ -71,7 +71,7 @@ # include <unistd.h> #endif -#if HAVE_TERMIO_H +#ifdef HAVE_TERMIO_H # include <termio.h> #else # ifdef HAVE_TERMIOS_H @@ -79,11 +79,11 @@ # endif #endif -#if HAVE_SYS_STREAM_H +#ifdef HAVE_SYS_STREAM_H # include <sys/stream.h> #endif -#if HAVE_SYS_PTEM_H +#ifdef HAVE_SYS_PTEM_H # include <sys/ptem.h> #endif |
