From f21e998aadc62c944a3ae923b5675d4073b5e486 Mon Sep 17 00:00:00 2001 From: wrstuden Date: Thu, 6 Jan 2000 22:23:20 +0000 Subject: [PATCH] Add a few little changes needed to get this to compile on IRIX 6.4. --- usr.bin/make/util.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/usr.bin/make/util.c b/usr.bin/make/util.c index ad487d96ca67..9fd69ec3ca9f 100644 --- a/usr.bin/make/util.c +++ b/usr.bin/make/util.c @@ -1,19 +1,20 @@ -/* $NetBSD: util.c,v 1.23 1999/09/04 04:21:28 christos Exp $ */ +/* $NetBSD: util.c,v 1.24 2000/01/06 22:23:20 wrstuden Exp $ */ /* * Missing stuff from OS's */ #ifdef MAKE_BOOTSTRAP -static char rcsid[] = "$NetBSD: util.c,v 1.23 1999/09/04 04:21:28 christos Exp $"; +static char rcsid[] = "$NetBSD: util.c,v 1.24 2000/01/06 22:23:20 wrstuden Exp $"; #else #include #ifndef lint -__RCSID("$NetBSD: util.c,v 1.23 1999/09/04 04:21:28 christos Exp $"); +__RCSID("$NetBSD: util.c,v 1.24 2000/01/06 22:23:20 wrstuden Exp $"); #endif #endif #include +#include #include "make.h" #include @@ -431,7 +432,7 @@ snprintf(va_alist) return rv; } -#if !defined(__SVR4) && !defined(__linux__) && !defined(ultrix) +#if !defined(__SVR4) && !defined(__linux__) && !defined(ultrix) && !defined(__sgi) int strftime(buf, len, fmt, tm)