--- ray/src/px/psign.c 1993/06/04 17:02:48 2.15 +++ ray/src/px/psign.c 1994/04/14 04:53:54 2.17 @@ -16,8 +16,6 @@ static char SCCSid[] = "$SunId$ LBL"; #include "font.h" -#include "paths.h" - #ifndef SSS #define SSS 3 /* super-sample size */ #endif @@ -48,8 +46,6 @@ int xdim; /* size of horizontal scan (bytes) */ FONT *ourfont; /* our font */ -char *libpath; /* library search path */ - typedef struct line { char *s; /* line w/o LF */ short *sp; /* character spacing */ @@ -126,8 +122,6 @@ unkopt: exit(1); } /* load font file */ - if ((libpath = getenv(ULIBVAR)) == NULL) - libpath = DEFPATH; ourfont = getfont(fontfile); /* get text */ if (an == argc) @@ -140,6 +134,7 @@ unkopt: /* convert text to bitmap */ maptext(); /* print header */ + newheader("RADIANCE", stdout); printargs(argc, argv, stdout); fputformat(COLRFMT, stdout); putchar('\n');