uterm: move uterm_input.h to uterm_input_internal.h
authorDavid Herrmann <dh.herrmann@googlemail.com>
Mon, 7 Jan 2013 12:18:06 +0000 (13:18 +0100)
committerDavid Herrmann <dh.herrmann@googlemail.com>
Mon, 7 Jan 2013 12:18:06 +0000 (13:18 +0100)
We will split the public uterm header soon to avoid big headers. Hence,
rename internal headers to *_internal.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
Makefile.am
src/uterm_input.c
src/uterm_input_internal.h [moved from src/uterm_input.h with 96% similarity]
src/uterm_input_uxkb.c

index e60453a..53b405c 100644 (file)
@@ -227,7 +227,7 @@ libuterm_la_SOURCES = \
        $(SHL_HOOK) \
        $(SHL_MISC) \
        src/uterm.h \
-       src/uterm_input.h \
+       src/uterm_input_internal.h \
        src/uterm_video.h \
        src/uterm_pci.h \
        src/uterm_systemd.h \
index ae6f1a2..8c883d6 100644 (file)
@@ -41,7 +41,7 @@
 #include "shl_dlist.h"
 #include "shl_hook.h"
 #include "uterm.h"
-#include "uterm_input.h"
+#include "uterm_input_internal.h"
 
 #define LOG_SUBSYSTEM "input"
 
similarity index 96%
rename from src/uterm_input.h
rename to src/uterm_input_internal.h
index 8800397..b015d7e 100644 (file)
@@ -25,8 +25,8 @@
 
 /* Internal definitions */
 
-#ifndef UTERM_INPUT_H
-#define UTERM_INPUT_H
+#ifndef UTERM_INPUT_INTERNAL_H
+#define UTERM_INPUT_INTERNAL_H
 
 #include <inttypes.h>
 #include <limits.h>
@@ -97,4 +97,4 @@ int uxkb_dev_process(struct uterm_input_dev *dev,
 void uxkb_dev_sleep(struct uterm_input_dev *dev);
 void uxkb_dev_wake_up(struct uterm_input_dev *dev);
 
-#endif /* UTERM_INPUT_H */
+#endif /* UTERM_INPUT_INTERNAL_H */
index 873a6a9..d91fd44 100644 (file)
@@ -36,7 +36,7 @@
 #include "shl_hook.h"
 #include "shl_misc.h"
 #include "uterm.h"
-#include "uterm_input.h"
+#include "uterm_input_internal.h"
 
 #define LOG_SUBSYSTEM "input_uxkb"