From: John Gilmore Date: Wed, 29 Mar 1995 16:59:39 +0000 (+0000) Subject: * def.h: Replace STDARG_PROTOTYPES with HAVE_STDARG_H X-Git-Tag: krb5-1.0-beta5~411 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5dd903968d75d8ac6e8ca72264d1c86c2eda11e2;p=krb5.git * def.h: Replace STDARG_PROTOTYPES with HAVE_STDARG_H git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5310 dc483132-0cff-0310-8789-dd5450dbe970 --- 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 *, ...);