summary refs log tree commit diff stats
path: root/linux-user/alpha
diff options
context:
space:
mode:
authorths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2007-06-12 21:22:16 +0000
committerths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2007-06-12 21:22:16 +0000
commit85b2d44057c2519f3878d0772b55b44f9280d085 (patch)
treee9069bc6b046a7b11d23e75ec8b587d10cad56cc /linux-user/alpha
parent9414cc6fd35eb08721fc96de17c52b1b0535ba3a (diff)
downloadfocaccia-qemu-85b2d44057c2519f3878d0772b55b44f9280d085.tar.gz
focaccia-qemu-85b2d44057c2519f3878d0772b55b44f9280d085.zip
Fix alpha user build failure.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2982 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user/alpha')
-rw-r--r--linux-user/alpha/termbits.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/linux-user/alpha/termbits.h b/linux-user/alpha/termbits.h
index a30c2a9829..86d0982e68 100644
--- a/linux-user/alpha/termbits.h
+++ b/linux-user/alpha/termbits.h
@@ -1,17 +1,17 @@
-typedef unsigned char	cc_t;
-typedef unsigned int	speed_t;
-typedef unsigned int	tcflag_t;
+typedef unsigned char	target_cc_t;
+typedef unsigned int	target_speed_t;
+typedef unsigned int	target_tcflag_t;
 
 #define TARGET_NCCS 19
 struct target_termios {
-	tcflag_t c_iflag;		/* input mode flags */
-	tcflag_t c_oflag;		/* output mode flags */
-	tcflag_t c_cflag;		/* control mode flags */
-	tcflag_t c_lflag;		/* local mode flags */
-	cc_t c_cc[TARGET_NCCS];		/* control characters */
-	cc_t c_line;			/* line discipline (== c_cc[19]) */
-	speed_t c_ispeed;		/* input speed */
-	speed_t c_ospeed;		/* output speed */
+	target_tcflag_t c_iflag;		/* input mode flags */
+	target_tcflag_t c_oflag;		/* output mode flags */
+	target_tcflag_t c_cflag;		/* control mode flags */
+	target_tcflag_t c_lflag;		/* local mode flags */
+	target_cc_t c_cc[TARGET_NCCS];		/* control characters */
+	target_cc_t c_line;			/* line discipline (== c_cc[19]) */
+	target_speed_t c_ispeed;		/* input speed */
+	target_speed_t c_ospeed;		/* output speed */
 };
 
 /* c_cc characters */