Move amd64 MD termois types definitions from linux_termios.h to linux_types.h

following other archs.
This commit is contained in:
njoly 2008-06-29 08:50:09 +00:00
parent ddf9744a79
commit 06e75299f3
2 changed files with 7 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: linux_termios.h,v 1.2 2005/12/11 12:20:14 christos Exp $ */
/* $NetBSD: linux_termios.h,v 1.3 2008/06/29 08:50:09 njoly Exp $ */
/*-
* Copyright (c) 2005 Emmanuel Dreyfus, all rights reserved.
@ -141,9 +141,6 @@
#define LINUX_VLNEXT 15
#define LINUX_VEOL2 16
typedef unsigned int linux_tcflag_t;
typedef unsigned char linux_cc_t;
#define LINUX_TCGETS _LINUX_IO('T', 0x01)
#define LINUX_TCSETS _LINUX_IO('T', 0x02)
#define LINUX_TCSETSW _LINUX_IO('T', 0x03)

View File

@ -1,4 +1,4 @@
/* $NetBSD: linux_types.h,v 1.4 2007/12/25 18:33:35 perry Exp $ */
/* $NetBSD: linux_types.h,v 1.5 2008/06/29 08:50:09 njoly Exp $ */
/*-
* Copyright (c) 2005 Emmanuel Dreyfus, all rights reserved.
@ -46,6 +46,11 @@ typedef unsigned long linux_dev_t;
typedef unsigned long linux_ino_t;
typedef int linux_timer_t;
/* From linux_termios.h */
typedef unsigned char linux_cc_t;
typedef unsigned int linux_speed_t;
typedef unsigned int linux_tcflag_t;
#define LINUX_STAT64_HAS_NSEC 1
struct linux_stat64 {
linux_dev_t lst_dev;