summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@sun.com>2008-05-22 20:10:40 -0700
committerAlan Coopersmith <alan.coopersmith@sun.com>2008-05-22 20:10:40 -0700
commit76ce8815598d849228d27a0593bb8af75502bf75 (patch)
treed617dc69316e9098e621a6e900437ca0f66c558c
parenta115e4506842b51f4bf76b5afb9d2ded2dacd51d (diff)
Move extern declarations to fstobdf.h
-rw-r--r--chars.c3
-rw-r--r--fstobdf.h2
2 files changed, 2 insertions, 3 deletions
diff --git a/chars.c b/chars.c
index ec4217d..5476fb2 100644
--- a/chars.c
+++ b/chars.c
@@ -52,9 +52,6 @@ in this Software without prior written authorization from The Open Group.
#include <X11/Xlib.h>
#include "fstobdf.h"
-extern unsigned long yResolution; /* intended vertical resoultion for font */
-extern unsigned long pointSize; /* font height in points */
-
#define BIT_ORDER BitmapFormatBitOrderMSB
#ifdef BYTE_ORDER
#undef BYTE_ORDER
diff --git a/fstobdf.h b/fstobdf.h
index 69d74d6..688b2cf 100644
--- a/fstobdf.h
+++ b/fstobdf.h
@@ -36,3 +36,5 @@ extern Bool EmitProperties ( FILE *outFile, FSXFontInfoHeader *fontHeader,
extern Bool EmitCharacters ( FILE *outFile, FSServer *fontServer,
FSXFontInfoHeader *fontHeader, Font fontID );
+extern unsigned long yResolution; /* intended vertical resoultion for font */
+extern unsigned long pointSize; /* font height in points */