diff options
author | Kevin E Martin <kem@kem.org> | 2005-10-06 15:39:19 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2005-10-06 15:39:19 +0000 |
commit | 275a0785ffac54e5c51ea3a6f68e17a7ae9be208 (patch) | |
tree | 6fe44966d6b5e311e8f7a6a74f7c76f107b0c6c9 | |
parent | a037207559f81193c19adaad6430fd8c5e47b431 (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.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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) { |