Fixes for IRIX/mips build with MIPSPro compilers

This commit is contained in:
gbeauche 2005-12-04 15:23:02 +00:00
parent dbd5736f1d
commit 0ca22128d6
3 changed files with 4 additions and 8 deletions

View File

@ -137,7 +137,7 @@ struct quehead {
struct quehead *qh_rlink;
};
inline void
void
insque(a, b)
void *a, *b;
{
@ -150,7 +150,7 @@ insque(a, b)
= (struct quehead *)element;
}
inline void
void
remque(a)
void *a;
{

View File

@ -70,8 +70,8 @@ extern int x_port, x_server, x_display;
int show_x _P((char *, struct socket *));
void redir_x _P((u_int32_t, int, int, int));
void getouraddr _P((void));
inline void slirp_insque _P((void *, void *));
inline void slirp_remque _P((void *));
void slirp_insque _P((void *, void *));
void slirp_remque _P((void *));
int add_exec _P((struct ex_list **, int, char *, int, int));
int slirp_openpty _P((int *, int *));
int fork_exec _P((struct socket *, char *, int));

View File

@ -37,10 +37,6 @@ typedef char *caddr_t;
# define O_BINARY 0
#endif
#ifdef HAVE_STDINT_H
# include <stdint.h>
#endif
#include <sys/types.h>
#ifdef HAVE_SYS_BITYPES_H
# include <sys/bitypes.h>