From 4dca94ffe66092da8401652dba651e0ff8ac5f1c Mon Sep 17 00:00:00 2001 From: Derrick Brashear Date: Tue, 13 Feb 2001 03:54:04 +0000 Subject: [PATCH] snprintf-for-aix-not-irix-20010212 Irix 6.5 has snprintf --- src/util/snprintf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util/snprintf.c b/src/util/snprintf.c index c789dc740..4aa08b761 100644 --- a/src/util/snprintf.c +++ b/src/util/snprintf.c @@ -1,7 +1,7 @@ /* snprintf.c - Formatted, length-limited print to a string */ #include -#if defined(AFS_OSF20_ENV) || defined(AFS_SGI51_ENV) +#if defined(AFS_OSF20_ENV) || defined(AFS_AIX32_ENV) #include #include @@ -384,4 +384,4 @@ void snprintf(char *p, unsigned int avail, char *fmt, ...) vsnprintf(p, avail, fmt, ap); va_end(ap); } -#endif /* AFS_OSF20_ENV || AFS_SGI51_ENV */ +#endif /* AFS_OSF20_ENV || AFS_AIX32_ENV */ -- 2.39.5