s/inline/__inline/

This commit is contained in:
Mark Murray 2002-07-19 13:49:37 +00:00
parent c279819e2e
commit bfc3d86a24
6 changed files with 6 additions and 6 deletions

View File

@ -90,7 +90,7 @@ static struct freebsd_syscall {
} fsc;
/* Clear up and free parts of the fsc structure. */
static inline void
static __inline void
clear_fsc() {
if (fsc.args) {
free(fsc.args);

View File

@ -88,7 +88,7 @@ static struct freebsd_syscall {
} fsc;
/* Clear up and free parts of the fsc structure. */
static inline void
static __inline void
clear_fsc() {
if (fsc.args) {
free(fsc.args);

View File

@ -78,7 +78,7 @@ static struct linux_syscall {
char **s_args; /* the printable arguments */
} lsc;
static inline void
static __inline void
clear_lsc() {
if (lsc.s_args) {
int i;

View File

@ -88,7 +88,7 @@ static struct freebsd_syscall {
} fsc;
/* Clear up and free parts of the fsc structure. */
static inline void
static __inline void
clear_fsc() {
if (fsc.args) {
free(fsc.args);

View File

@ -78,7 +78,7 @@ static struct linux_syscall {
char **s_args; /* the printable arguments */
} lsc;
static inline void
static __inline void
clear_lsc() {
if (lsc.s_args) {
int i;

View File

@ -65,7 +65,7 @@ int nosigs = 0;
FILE *outfile;
int Procfd;
static inline void
static __inline void
usage(void)
{
fprintf(stderr, "%s\n%s\n",