Module Name: src
Committed By: kre
Date: Tue May 3 23:55:12 UTC 2016
Modified Files:
src/bin/sh: jobs.c
Log Message:
Unbreak build ... again... gcc is insane.
To generate a diff of this commit:
cvs rdiff -u -r1.77 -r1.78 src/bin/sh/jobs.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/bin/sh/jobs.c
diff -u src/bin/sh/jobs.c:1.77 src/bin/sh/jobs.c:1.78
--- src/bin/sh/jobs.c:1.77 Tue May 3 20:46:35 2016
+++ src/bin/sh/jobs.c Tue May 3 23:55:12 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: jobs.c,v 1.77 2016/05/03 20:46:35 kre Exp $ */
+/* $NetBSD: jobs.c,v 1.78 2016/05/03 23:55:12 kre Exp $ */
/*-
* Copyright (c) 1991, 1993
@@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)jobs.c 8.5 (Berkeley) 5/4/95";
#else
-__RCSID("$NetBSD: jobs.c,v 1.77 2016/05/03 20:46:35 kre Exp $");
+__RCSID("$NetBSD: jobs.c,v 1.78 2016/05/03 23:55:12 kre Exp $");
#endif
#endif /* not lint */
@@ -102,7 +102,7 @@ STATIC int waitproc(int, struct job *, i
STATIC void cmdtxt(union node *);
STATIC void cmdlist(union node *, int);
STATIC void cmdputs(const char *);
-static void inline cmdputi(int);
+inline static void cmdputi(int);
#ifdef SYSV
STATIC int onsigchild(void);
@@ -381,7 +381,7 @@ restartjob(struct job *jp)
}
#endif
-static void inline
+inline static void
cmdputi(int n)
{
char str[20];