Pointed out by: Doug Winterburn <dlw@seavme.xroads.com>

3) Add "#include "config.h" to src/interfaces/ecpg/preproc/pgc.l
   to correct "strings.h not found".  config.h has the proper define to
   make this work and should probably be near the top of pgc.l before
   the first include.
This commit is contained in:
Marc G. Fournier 1998-03-31 03:00:20 +00:00
parent 92c6bf9775
commit 62943bb76f
1 changed files with 1 additions and 0 deletions

View File

@ -1,5 +1,6 @@
/* Copyright comment! */
%{
#include "config.h"
#include <sys/types.h>
#include <limits.h>
#if defined(HAVE_STRING_H)