| 15 |  | #define galloc(nv)      (GLYPH *)malloc(sizeof(GLYPH)+2*sizeof(GORD)*(nv)) | 
| 16 |  |  | 
| 17 |  |  | 
| 18 | < | extern char  *libpath;                  /* list of library directories */ | 
| 18 | > | extern char  *fgetword(), *getlibpath(); | 
| 19 |  |  | 
| 20 | – | extern char  *fgetword(); | 
| 21 | – |  | 
| 20 |  | static FONT     *fontlist = NULL;       /* list of loaded fonts */ | 
| 21 |  |  | 
| 22 |  |  | 
| 38 |  | if (!strcmp(f->name, fname)) | 
| 39 |  | return(f); | 
| 40 |  | /* load the font file */ | 
| 41 | < | if ((pathname = getpath(fname, libpath, R_OK)) == NULL) { | 
| 41 | > | if ((pathname = getpath(fname, getlibpath(), R_OK)) == NULL) { | 
| 42 |  | sprintf(errmsg, "cannot find font file \"%s\"", fname); | 
| 43 |  | error(USER, errmsg); | 
| 44 |  | } |