diff options
author | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-14 16:48:57 +0000 |
---|---|---|
committer | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-14 16:48:57 +0000 |
commit | 0ec9383c6314fbe7eb4b153a5b931cdced8e78a5 (patch) | |
tree | b21c27c09ac1125bd5b6fc1fa73e0858bc4485ad /bdftopcf.c | |
parent | f51be8ca0daef86a6f0b10383ca84f42fc1b9a74 (diff) |
XFree86 4.3.0.1xf86-4_3_99_903_specialxf86-4_3_99_902xf86-4_3_99_901xf86-4_3_99_16xf86-4_3_0_1xf86-012804-2330PRE_xf86-4_3_0_1
Diffstat (limited to 'bdftopcf.c')
-rw-r--r-- | bdftopcf.c | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -27,16 +27,21 @@ from The Open Group. */ +/* $XFree86: xc/programs/bdftopcf/bdftopcf.c,v 1.5 2001/12/14 20:00:39 dawes Exp $ */ + #include <X11/X.h> #include <X11/Xproto.h> #include "fontmisc.h" #include "fontstruct.h" #include "fntfilio.h" +#include "fntfil.h" +#include "bdfint.h" +#include "pcf.h" #include <stdio.h> #include <X11/Xos.h> -main (argc, argv) - char **argv; +int +main (int argc, char *argv[]) { FontRec font; FontFilePtr input, output; @@ -186,5 +191,5 @@ main (argc, argv) } else FontFileClose (output); - exit (0); + return (0); } |