summaryrefslogtreecommitdiffstats
path: root/isys
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-12-03 20:51:24 +0000
committerJeremy Katz <katzj@redhat.com>2002-12-03 20:51:24 +0000
commitdda3384d6e3857992efba6df3690b6e63f0ae7e9 (patch)
tree31388142ed9452f2261c51dd718ee07e8d8a66ac /isys
parent406dd58f0b17dfceef3742a247e85b2350529c04 (diff)
downloadanaconda-dda3384d6e3857992efba6df3690b6e63f0ae7e9.tar.gz
anaconda-dda3384d6e3857992efba6df3690b6e63f0ae7e9.tar.xz
anaconda-dda3384d6e3857992efba6df3690b6e63f0ae7e9.zip
this function gets used by the loader
Diffstat (limited to 'isys')
-rw-r--r--isys/lang.c2
-rw-r--r--isys/lang.h8
2 files changed, 9 insertions, 1 deletions
diff --git a/isys/lang.c b/isys/lang.c
index 8442607d3..5d3f82868 100644
--- a/isys/lang.c
+++ b/isys/lang.c
@@ -66,7 +66,7 @@ struct kmapInfo {
};
/* the file pointer must be at the beginning of the section already! */
-static int loadKeymap(gzFile stream) {
+int loadKeymap(gzFile stream) {
int console;
int kmap, key;
struct kbentry entry;
diff --git a/isys/lang.h b/isys/lang.h
index 2921af283..b2e377c5d 100644
--- a/isys/lang.h
+++ b/isys/lang.h
@@ -1,2 +1,10 @@
+#ifndef ISYS_LANG_H
+#define ISYS_LANG_H
+
+#include "stubs.h"
+
+int loadKeymap(gzFile stream);
int isysLoadFont(char * fontFile);
int isysLoadKeymap(char * keymap);
+
+#endif