summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorkiyohara <kiyohara@NetBSD.org>2011-08-07 14:36:35 +0000
committerkiyohara <kiyohara@NetBSD.org>2011-08-07 14:36:35 +0000
commit0e18a99487aa0e7ebdfaaee2cad4cd4cde9e2c3f (patch)
treec57067db162411345ed15060f65b758acc110b87 /sys
parent000492e60aa3d613f06cbba4ef9c713882d91de9 (diff)
Remove obsoleted headers.
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/bebox/include/mouse.h49
-rw-r--r--sys/arch/bebox/include/pc/display.h47
-rw-r--r--sys/arch/bebox/include/pccons.h21
3 files changed, 0 insertions, 117 deletions
diff --git a/sys/arch/bebox/include/mouse.h b/sys/arch/bebox/include/mouse.h
deleted file mode 100644
index 5a3334d56ac..00000000000
--- a/sys/arch/bebox/include/mouse.h
+++ /dev/null
@@ -1,49 +0,0 @@
-/* $NetBSD: mouse.h,v 1.1 1997/10/14 06:48:28 sakamoto Exp $ */
-
-/*-
- * Copyright (c) 1992, 1993 Erik Forsberg.
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *
- * THIS SOFTWARE IS PROVIDED BY ``AS IS'' AND ANY EXPRESS OR IMPLIED
- * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
- * NO EVENT SHALL I BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
- * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
- * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef _BEBOX_MOUSE_H_
-#define _BEBOX_MOUSE_H_
-
-struct mouseinfo {
- unsigned char status;
- char xmotion, ymotion;
-};
-
-#define BUTSTATMASK 0x07 /* Any mouse button down if any bit set */
-#define BUTCHNGMASK 0x38 /* Any mouse button changed if any bit set */
-
-#define BUT3STAT 0x01 /* Button 3 down if set */
-#define BUT2STAT 0x02 /* Button 2 down if set */
-#define BUT1STAT 0x04 /* Button 1 down if set */
-#define BUT3CHNG 0x08 /* Button 3 changed if set */
-#define BUT2CHNG 0x10 /* Button 2 changed if set */
-#define BUT1CHNG 0x20 /* Button 1 changed if set */
-#define MOVEMENT 0x40 /* Mouse movement detected */
-
-/* Ioctl definitions */
-
-#define MOUSEIOC ('M'<<8)
-#define MOUSEIOCREAD (MOUSEIOC|60)
-
-#endif /* !_BEBOX_MOUSE_H_ */
diff --git a/sys/arch/bebox/include/pc/display.h b/sys/arch/bebox/include/pc/display.h
deleted file mode 100644
index 462a755be21..00000000000
--- a/sys/arch/bebox/include/pc/display.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/* $NetBSD: display.h,v 1.1 1997/10/14 06:48:51 sakamoto Exp $ */
-
-/*
- * IBM PC display definitions
- */
-
-/* Color attributes for foreground text */
-
-#define FG_BLACK 0
-#define FG_BLUE 1
-#define FG_GREEN 2
-#define FG_CYAN 3
-#define FG_RED 4
-#define FG_MAGENTA 5
-#define FG_BROWN 6
-#define FG_LIGHTGREY 7
-#define FG_DARKGREY 8
-#define FG_LIGHTBLUE 9
-#define FG_LIGHTGREEN 10
-#define FG_LIGHTCYAN 11
-#define FG_LIGHTRED 12
-#define FG_LIGHTMAGENTA 13
-#define FG_YELLOW 14
-#define FG_WHITE 15
-#define FG_BLINK 0x80
-#define FG_MASK 0x8f
-
-/* Color attributes for text background */
-
-#define BG_BLACK 0x00
-#define BG_BLUE 0x10
-#define BG_GREEN 0x20
-#define BG_CYAN 0x30
-#define BG_RED 0x40
-#define BG_MAGENTA 0x50
-#define BG_BROWN 0x60
-#define BG_LIGHTGREY 0x70
-#define BG_MASK 0x70
-
-/* Monochrome attributes for foreground text */
-
-#define FG_UNDERLINE 0x01
-#define FG_INTENSE 0x08
-
-/* Monochrome attributes for text background */
-
-#define BG_INTENSE 0x10
diff --git a/sys/arch/bebox/include/pccons.h b/sys/arch/bebox/include/pccons.h
deleted file mode 100644
index 31fff8b7a8b..00000000000
--- a/sys/arch/bebox/include/pccons.h
+++ /dev/null
@@ -1,21 +0,0 @@
-/* $NetBSD: pccons.h,v 1.3 2005/12/11 12:17:03 christos Exp $ */
-
-/*
- * pccons.h -- pccons ioctl definitions
- */
-
-#ifndef _PCCONS_H_
-#define _PCCONS_H_
-
-#include <sys/ioctl.h>
-
-#define CONSOLE_X_MODE_ON _IO('t',121)
-#define CONSOLE_X_MODE_OFF _IO('t',122)
-#define CONSOLE_X_BELL _IOW('t',123,int[2])
-#define CONSOLE_SET_TYPEMATIC_RATE _IOW('t',124,u_char)
-
-#ifdef _KERNEL
-int pccnattach(void);
-#endif
-
-#endif /* _PCCONS_H_ */