summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin E Martin <kem@kem.org>2005-10-06 15:39:19 +0000
committerKevin E Martin <kem@kem.org>2005-10-06 15:39:19 +0000
commit275a0785ffac54e5c51ea3a6f68e17a7ae9be208 (patch)
tree6fe44966d6b5e311e8f7a6a74f7c76f107b0c6c9
parenta037207559f81193c19adaad6430fd8c5e47b431 (diff)
Instead of including the Xserver's os.h header for the extern ErrorF andXORG-6_8_99_903XORG-6_8_99_902XORG-6_8_99_901
FatalError declarations, declare them directly.
-rw-r--r--mkcfm.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/mkcfm.c b/mkcfm.c
index 2ca5f5d..e847723 100644
--- a/mkcfm.c
+++ b/mkcfm.c
@@ -25,8 +25,6 @@
#include <sys/types.h>
#include <dirent.h>
-#include <X11/os.h>
-
#include <X11/fonts/fntfilst.h>
#include <X11/fonts/FSproto.h>
#include <X11/fonts/FS.h>
@@ -60,6 +58,9 @@ extern char *unicodetoPSname(unsigned short code);
FontScalableRec vals;
FontEntryRec entry;
+void FatalError(const char *f, ...);
+void ErrorF(const char *f, ...);
+
int
main(int argc, char **argv)
{