s/inline/__inline/

This commit is contained in:
Mark Murray 2002-07-19 14:12:27 +00:00
parent d601abcf6c
commit 8bd89d7e04
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=100359
2 changed files with 6 additions and 6 deletions

View File

@ -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;

View File

@ -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;