diff options
Diffstat (limited to 'contrib/bmake/util.c')
-rw-r--r-- | contrib/bmake/util.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/contrib/bmake/util.c b/contrib/bmake/util.c index 31d2b9a06080..d674a6c21aac 100644 --- a/contrib/bmake/util.c +++ b/contrib/bmake/util.c @@ -1,9 +1,9 @@ -/* $NetBSD: util.c,v 1.55 2020/01/07 21:24:16 rillig Exp $ */ +/* $NetBSD: util.c,v 1.57 2020/07/03 08:13:23 rillig Exp $ */ /* * Missing stuff from OS's * - * $Id: util.c,v 1.34 2020/01/22 01:19:25 sjg Exp $ + * $Id: util.c,v 1.35 2020/07/04 18:16:55 sjg Exp $ */ #if defined(__MINT__) || defined(__linux__) #include <signal.h> @@ -12,10 +12,10 @@ #include "make.h" #ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: util.c,v 1.55 2020/01/07 21:24:16 rillig Exp $"; +static char rcsid[] = "$NetBSD: util.c,v 1.57 2020/07/03 08:13:23 rillig Exp $"; #else #ifndef lint -__RCSID("$NetBSD: util.c,v 1.55 2020/01/07 21:24:16 rillig Exp $"); +__RCSID("$NetBSD: util.c,v 1.57 2020/07/03 08:13:23 rillig Exp $"); #endif #endif @@ -68,7 +68,7 @@ getenv(const char *name) { int offset; - return(findenv(name, &offset)); + return findenv(name, &offset); } int @@ -173,7 +173,7 @@ strrcpy(char *ptr, char *str) while (len) *--ptr = str[--len]; - return (ptr); + return ptr; } /* end strrcpy */ @@ -276,7 +276,7 @@ getwd(char *pathname) if (st_cur.st_ino == st_root.st_ino && DEV_DEV_COMPARE(st_cur.st_dev, st_root.st_dev)) { (void)strcpy(pathname, *pathptr != '/' ? "/" : pathptr); - return (pathname); + return pathname; } /* open the parent directory */ @@ -399,7 +399,7 @@ vsnprintf(char *s, size_t n, const char *fmt, va_list args) putc('\0', &fakebuf); if (fakebuf._cnt<0) fakebuf._cnt = 0; - return (n-fakebuf._cnt-1); + return n-fakebuf._cnt-1; #else #ifndef _PATH_DEVNULL # define _PATH_DEVNULL "/dev/null" @@ -442,7 +442,7 @@ size_t strftime(char *buf, size_t len, const char *fmt, const struct tm *tm) { static char months[][4] = { - "Jan", "Feb", "Mar", "Apr", "May", "Jun", + "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" }; |