X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=ginge.git;a=blobdiff_plain;f=loader%2Fheader.h;h=208e5ab27ba27e2cfe01c1002922686707d58c1a;hp=4bc6e1b742b1b06dd6018a9938cf4eeb63073a32;hb=b4f4cb40a6f3f4ecc05c7b6c8f2e852282234519;hpb=d0b9b0df7ed0dc36aabe30e2d584c27c8c32a3d9 diff --git a/loader/header.h b/loader/header.h index 4bc6e1b..208e5ab 100644 --- a/loader/header.h +++ b/loader/header.h @@ -43,10 +43,10 @@ struct op_context; void emu_init(void *map_bottom); void emu_call_handle_op(struct op_context *op_ctx); -void *emu_do_mmap(unsigned int length, int prot, int flags, int fd, unsigned int offset); -int emu_do_munmap(void *addr, unsigned int length); -int emu_do_ioctl(int fd, int request, void *argp); -int emu_read_gpiodev(void *buf, int count); +long emu_do_mmap(unsigned int length, int prot, int flags, int fd, unsigned int offset); +long emu_do_munmap(void *addr, unsigned int length); +long emu_do_ioctl(int fd, int request, void *argp); +long emu_read_gpiodev(void *buf, int count); void *emu_do_fopen(const char *path, const char *mode); int emu_do_system(const char *command); int emu_do_execve(const char *filename, char *const argv[], char *const envp[]);