diff options
-rw-r--r-- | src/util/makedepend/ChangeLog | 5 | ||||
-rw-r--r-- | src/util/makedepend/def.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/util/makedepend/ChangeLog b/src/util/makedepend/ChangeLog new file mode 100644 index 000000000..3cea4feb4 --- /dev/null +++ b/src/util/makedepend/ChangeLog @@ -0,0 +1,5 @@ +Wed Mar 29 08:58:37 1995 John Gilmore (gnu at toad.com) + + * def.h: Replace STDARG_PROTOTYPES with HAVE_STDARG_H. + + diff --git a/src/util/makedepend/def.h b/src/util/makedepend/def.h index 2d8c1b4bb..8a49b3215 100644 --- a/src/util/makedepend/def.h +++ b/src/util/makedepend/def.h @@ -128,7 +128,7 @@ struct filepointer *getfile(); struct inclist *newinclude(); struct inclist *inc_path(); -#ifdef STDARG_PROTOTYPES /* NeedVarargsPrototypes */ +#ifdef HAVE_STDARG_H /* NeedVarargsPrototypes */ extern fatalerr(char *, ...); extern warning(char *, ...); extern warning1(char *, ...); |