mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-24 07:40:52 +00:00
s/inline/__inline/
This commit is contained in:
parent
d601abcf6c
commit
8bd89d7e04
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=100359
@ -55,7 +55,7 @@ enum _vflag vflag = FIRST;
|
||||
static off_t address; /* address/offset in stream */
|
||||
static off_t eaddress; /* end address */
|
||||
|
||||
static inline void print(PR *, u_char *);
|
||||
static __inline void print(PR *, u_char *);
|
||||
|
||||
void
|
||||
display()
|
||||
@ -112,7 +112,7 @@ display()
|
||||
}
|
||||
}
|
||||
|
||||
static inline void
|
||||
static __inline void
|
||||
print(pr, bp)
|
||||
PR *pr;
|
||||
u_char *bp;
|
||||
|
@ -68,10 +68,10 @@ static SPACE HS, PS, SS;
|
||||
#define hs HS.space
|
||||
#define hsl HS.len
|
||||
|
||||
static inline int applies(struct s_command *);
|
||||
static __inline int applies(struct s_command *);
|
||||
static void flush_appends(void);
|
||||
static void lputs(char *);
|
||||
static inline 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 *);
|
||||
|
||||
@ -276,7 +276,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 inline int
|
||||
static __inline int
|
||||
applies(cp)
|
||||
struct s_command *cp;
|
||||
{
|
||||
@ -516,7 +516,7 @@ lputs(s)
|
||||
errx(1, "stdout: %s", strerror(errno ? errno : EIO));
|
||||
}
|
||||
|
||||
static inline int
|
||||
static __inline int
|
||||
regexec_e(preg, string, eflags, nomatch, slen)
|
||||
regex_t *preg;
|
||||
const char *string;
|
||||
|
Loading…
Reference in New Issue
Block a user