summaryrefslogtreecommitdiffstats
path: root/sys-utils/setsid.c
diff options
context:
space:
mode:
authorThomas Schwinge2012-05-25 20:16:18 +0200
committerKarel Zak2012-05-29 10:11:43 +0200
commit9766962478a3956e4cde61ce0b85aee94ed3b637 (patch)
tree1cf7c76afceac5624ed20701ed12a6ebb8ea86ac /sys-utils/setsid.c
parentwrite: Don't explicitly include <asm/param.h>. (diff)
downloadkernel-qcow2-util-linux-9766962478a3956e4cde61ce0b85aee94ed3b637.tar.gz
kernel-qcow2-util-linux-9766962478a3956e4cde61ce0b85aee94ed3b637.tar.xz
kernel-qcow2-util-linux-9766962478a3956e4cde61ce0b85aee94ed3b637.zip
setsid: Include <sys/ioctl.h> instead of <termio.h>.
Signed-off-by: Thomas Schwinge <thomas@codesourcery.com>
Diffstat (limited to 'sys-utils/setsid.c')
-rw-r--r--sys-utils/setsid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys-utils/setsid.c b/sys-utils/setsid.c
index 6d1eeda42..52ad38f3e 100644
--- a/sys-utils/setsid.c
+++ b/sys-utils/setsid.c
@@ -15,7 +15,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
-#include <termio.h>
+#include <sys/ioctl.h>
#include "c.h"
#include "nls.h"