Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 13 Jan 2015 00:04:23 +0000 (UTC)
From:      "Pedro F. Giffuni" <pfg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r277099 - head/usr.bin/sed
Message-ID:  <201501130004.t0D04NMj021610@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pfg
Date: Tue Jan 13 00:04:22 2015
New Revision: 277099
URL: https://svnweb.freebsd.org/changeset/base/277099

Log:
  Replace __inline GNUism with the standard inline.
  
  MFC after:	1 week

Modified:
  head/usr.bin/sed/process.c

Modified: head/usr.bin/sed/process.c
==============================================================================
--- head/usr.bin/sed/process.c	Tue Jan 13 00:00:09 2015	(r277098)
+++ head/usr.bin/sed/process.c	Tue Jan 13 00:04:22 2015	(r277099)
@@ -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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201501130004.t0D04NMj021610>