diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-01-17 04:48:13 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-01-17 04:48:13 -0500 |
commit | 711713d6642eff155bfede8a2dd213824016b76c (patch) | |
tree | a2e98a6cc2de0178e1ca62c28898b4f791878e5e /src/rc/start-stop-daemon.c | |
parent | 8b5e391afbc5befa47cf62a925defd5a9b5b31e8 (diff) |
start-stop-daemon: use termios.h rather than sys/termios.h
POSIX specifies termios.h, not sys/termios.h.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'src/rc/start-stop-daemon.c')
-rw-r--r-- | src/rc/start-stop-daemon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rc/start-stop-daemon.c b/src/rc/start-stop-daemon.c index 4790060d..72b8aff0 100644 --- a/src/rc/start-stop-daemon.c +++ b/src/rc/start-stop-daemon.c @@ -43,7 +43,7 @@ #include <sys/ioctl.h> #include <sys/resource.h> #include <sys/stat.h> -#include <sys/termios.h> +#include <termios.h> #include <sys/time.h> #include <sys/wait.h> |