diff options
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -20,11 +20,11 @@ | |||
20 | #include <X11/keysym.h> | 20 | #include <X11/keysym.h> |
21 | #include <X11/Xutil.h> | 21 | #include <X11/Xutil.h> |
22 | 22 | ||
23 | #if defined(LINUX) | 23 | #if defined(__linux) |
24 | #include <pty.h> | 24 | #include <pty.h> |
25 | #elif defined(OPENBSD) || defined(NETBSD) | 25 | #elif defined(__OpenBSD__) || defined(__NetBSD__) |
26 | #include <util.h> | 26 | #include <util.h> |
27 | #elif defined(FREEBSD) | 27 | #elif defined(__FreeBSD__) || defined(__DragonFly__) |
28 | #include <libutil.h> | 28 | #include <libutil.h> |
29 | #endif | 29 | #endif |
30 | 30 | ||