mirror of
https://github.com/kanjitalk755/macemu.git
synced 2024-12-25 17:29:19 +00:00
Fixes for IRIX/mips build with MIPSPro compilers
This commit is contained in:
parent
dbd5736f1d
commit
0ca22128d6
@ -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;
|
||||
{
|
||||
|
@ -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));
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user