diff options
author | Marcus Brinkmann <marcus@gnu.org> | 2002-06-05 01:44:44 +0000 |
---|---|---|
committer | Marcus Brinkmann <marcus@gnu.org> | 2002-06-05 01:44:44 +0000 |
commit | 19e5de68bae6f5eb2296a1fb20ec51939db5087e (patch) | |
tree | 214a6ccb9c1b902b87ed57e54c51103bd4a58cba /console | |
parent | c5584870a405eb02753369dd9e1859261d1a8460 (diff) |
2002-06-05 Marcus Brinkmann <marcus@gnu.org>
* input.h: Renamed to ...
* input-drv.h: ... this.
* focus.c: Include "input-drv.h" instead "input.h".
* console.c: Likewise.
* Makefile (LCLHDRS): Rename input.h to input-drv.h.
Diffstat (limited to 'console')
-rw-r--r-- | console/ChangeLog | 8 | ||||
-rw-r--r-- | console/Makefile | 2 | ||||
-rw-r--r-- | console/console.c | 2 | ||||
-rw-r--r-- | console/focus.c | 2 | ||||
-rw-r--r-- | console/input-drv.h (renamed from console/input.h) | 2 |
5 files changed, 12 insertions, 4 deletions
diff --git a/console/ChangeLog b/console/ChangeLog index 4e14a145..a51a927b 100644 --- a/console/ChangeLog +++ b/console/ChangeLog @@ -1,3 +1,11 @@ +2002-06-05 Marcus Brinkmann <marcus@gnu.org> + + * input.h: Renamed to ... + * input-drv.h: ... this. + * focus.c: Include "input-drv.h" instead "input.h". + * console.c: Likewise. + * Makefile (LCLHDRS): Rename input.h to input-drv.h. + 2002-06-04 Marcus Brinkmann <marcus@gnu.org> * display.h: New file. diff --git a/console/Makefile b/console/Makefile index 06ceec4e..7174787f 100644 --- a/console/Makefile +++ b/console/Makefile @@ -23,7 +23,7 @@ makemode := server target = console SRCS = main.c console.c focus.c vga-display.c vga.c dynafont.c bdf.c -LCLHDRS = focus.h input.h console.h display-drv.h vga.h vga-hw.h dynafont.h bdf.h \ +LCLHDRS = focus.h input-drv.h console.h display-drv.h vga.h vga-hw.h dynafont.h bdf.h \ mutations.h priv.h HURDLIBS = trivfs fshelp iohelp threads ports ihash shouldbeinlibc diff --git a/console/console.c b/console/console.c index 71422ffd..cecdb5b4 100644 --- a/console/console.c +++ b/console/console.c @@ -25,7 +25,7 @@ #include "console.h" #include "display-drv.h" -#include "input.h" +#include "input-drv.h" struct vcons diff --git a/console/focus.c b/console/focus.c index f2f1822d..c9779af1 100644 --- a/console/focus.c +++ b/console/focus.c @@ -3,7 +3,7 @@ #include <string.h> #include "console.h" -#include "input.h" +#include "input-drv.h" #include "focus.h" struct argp_option focus_argp_options[] = diff --git a/console/input.h b/console/input-drv.h index e660fa22..60105078 100644 --- a/console/input.h +++ b/console/input-drv.h @@ -1,4 +1,4 @@ -/* input.h - The interface to an input driver. +/* input-drv.h - The interface to an input driver. Copyright (C) 2002 Free Software Foundation, Inc. Written by Marcus Brinkmann. |