From dc7ea8d372a7e1ee1047fe98aa66b4fdc2d1908f Mon Sep 17 00:00:00 2001 From: Theodore Tso Date: Thu, 16 Jun 1994 04:51:28 +0000 Subject: [PATCH] Include if STDARG_PROTOTYPES is defined and __STDC__ is not defined (because com_err.h only pulls in if __STDC__ is defined) git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@3833 dc483132-0cff-0310-8789-dd5450dbe970 --- src/util/ss/error.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/util/ss/error.c b/src/util/ss/error.c index 1f2d94301..af755cc41 100644 --- a/src/util/ss/error.c +++ b/src/util/ss/error.c @@ -28,8 +28,9 @@ #ifndef __STDC__ /* we didn't get it in com_err.h if it wasn't STDC. */ -#ifndef STDARG_PROTOTYPES -/* and we don't need it, either, if we're using stdarg.h... */ +#ifdef STDARG_PROTOTYPES +#include +#else #include #endif #endif -- 2.26.2