diff options
author | jschauma <jschauma> | 2003-08-25 16:06:49 +0000 |
---|---|---|
committer | jschauma <jschauma> | 2003-08-25 16:06:49 +0000 |
commit | c78030bddac718943fcaccf3ed1995dfc8f0f3e6 (patch) | |
tree | 2ff961fa5de971776a0081c029eab8c807347e80 /textproc/nbsed | |
parent | 5043db560876a2aebf569d8011c1fd6a5e930f0f (diff) | |
download | pkgsrc-c78030bddac718943fcaccf3ed1995dfc8f0f3e6.tar.gz |
Resurrect 'inline' as '__inline', which Irix MipsPro compiler knows.
Following suggestions by Martin Husemann and Todd Vierling.
Diffstat (limited to 'textproc/nbsed')
-rw-r--r-- | textproc/nbsed/files/process.c | 12 |
1 files changed, 6 insertions, 6 deletions
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; |