From: Paul Eggert Date: Wed, 11 Dec 2002 06:30:36 +0000 (+0000) Subject: Adjust to struniq renaming. X-Git-Tag: BISON-1_875~133 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/d38a11a64bb0b4de0bebdc916e1f08c2ea95ed90?ds=sidebyside Adjust to struniq renaming. --- diff --git a/src/getargs.c b/src/getargs.c index b9a30698..182b9f3b 100644 --- a/src/getargs.c +++ b/src/getargs.c @@ -20,13 +20,15 @@ 02111-1307, USA. */ #include "system.h" -#include "getopt.h" -#include "argmatch.h" -#include "error.h" + +#include +#include +#include + #include "complain.h" -#include "struniq.h" -#include "getargs.h" #include "files.h" +#include "getargs.h" +#include "uniqstr.h" int debug_flag = 0; int defines_flag = 0; @@ -410,5 +412,5 @@ getargs (int argc, char *argv[]) usage (EXIT_FAILURE); } - current_file = grammar_file = struniq_new (argv[optind]); + current_file = grammar_file = uniqstr_new (argv[optind]); }