From 9645973639eb67d8fa85a3e76029fbf135ae52bc Mon Sep 17 00:00:00 2001 From: jschauma Date: Mon, 25 Aug 2003 16:06:49 +0000 Subject: Resurrect 'inline' as '__inline', which Irix MipsPro compiler knows. Following suggestions by Martin Husemann and Todd Vierling. --- textproc/nbsed/files/process.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'textproc') diff --git a/textproc/nbsed/files/process.c b/textproc/nbsed/files/process.c index 045778f94e7..f59d889f7ac 100644 --- a/textproc/nbsed/files/process.c +++ b/textproc/nbsed/files/process.c @@ -1,4 +1,4 @@ -/* $NetBSD: process.c,v 1.2 2003/08/23 22:13:56 jschauma Exp $ */ +/* $NetBSD: process.c,v 1.3 2003/08/25 16:06:49 jschauma Exp $ */ /*- * Copyright (c) 1992 Diomidis Spinellis. @@ -47,7 +47,7 @@ #if 0 static char sccsid[] = "@(#)process.c 8.6 (Berkeley) 4/20/94"; #else -__RCSID("$NetBSD: process.c,v 1.2 2003/08/23 22:13:56 jschauma Exp $"); +__RCSID("$NetBSD: process.c,v 1.3 2003/08/25 16:06:49 jschauma Exp $"); #endif #endif /* not lint */ @@ -103,10 +103,10 @@ static SPACE HS, PS, SS; #define hs HS.space #define hsl HS.len -static int applies(struct s_command *); +static __inline int applies(struct s_command *); static void flush_appends(void); static void lputs(char *); -static int regexec_e(regex_t *, const char *, int, int, size_t); +static __inline int regexec_e(regex_t *, const char *, int, int, size_t); static void regsub(SPACE *, char *, char *); static int substitute(struct s_command *); @@ -310,7 +310,7 @@ new: if (!nflag && !pd) * Return TRUE if the command applies to the current line. Sets the inrange * flag to process ranges. Interprets the non-select (``!'') flag. */ -static int +static __inline int applies(struct s_command *cp) { int r; @@ -539,7 +539,7 @@ lputs(char *s) err(FATAL, "stdout: %s", strerror(errno ? errno : EIO)); } -static int +static __inline int regexec_e(regex_t *preg, const char *string, int eflags, int nomatch, size_t slen) { int eval; -- cgit v1.2.3