s/inline/__inline/
This commit is contained in:
parent
c279819e2e
commit
bfc3d86a24
@ -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);
|
||||
|
@ -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);
|
||||
|
@ -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;
|
||||
|
@ -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);
|
||||
|
@ -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;
|
||||
|
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user