From a161398ab869d67f889c76c2913522eac23ea8c2 Mon Sep 17 00:00:00 2001 From: "Pedro F. Giffuni" Date: Tue, 13 Jan 2015 00:04:22 +0000 Subject: [PATCH] Replace __inline GNUism with the standard inline. MFC after: 1 week --- usr.bin/sed/process.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/sed/process.c b/usr.bin/sed/process.c index 71fb519023bd..cdfba811ce18 100644 --- a/usr.bin/sed/process.c +++ b/usr.bin/sed/process.c @@ -67,7 +67,7 @@ static SPACE HS, PS, SS, YS; #define hs HS.space #define hsl HS.len -static __inline int applies(struct s_command *); +static inline int applies(struct s_command *); static void do_tr(struct s_tr *); static void flush_appends(void); static void lputs(char *, size_t); @@ -288,7 +288,7 @@ new: if (!nflag && !pd) * Return TRUE if the command applies to the current line. Sets the start * line for process ranges. Interprets the non-select (``!'') flag. */ -static __inline int +static inline int applies(struct s_command *cp) { int r;