/*
 * Copyright 1988, 1989, 1990, 1991 Massachusetts Institute of Technology
 */

#define GCONFFILE "config"
#define GCONFDIRS "dirs"
#define PRESTRING "# The following macros are inserted by 'gconfig' for the \"%s\" configuration\n"
#define POSTSTRING "# End of inserted macros\n"
typedef struct _option_line {
  struct _option_line *prev;
  char macro_name[30];
  char *option_text;
  struct _option_line *next;
} OptionLine;

int grename();
