Fix an incorrect definition for a syscall

Wow that was a bad one.
This commit is contained in:
Kevin Lange 2012-09-04 22:33:36 -07:00
parent 5914a09735
commit 027d90a53b
2 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ DECL_SYSCALL1(chdir, char *);
DECL_SYSCALL2(getcwd, char *, size_t);
DECL_SYSCALL3(clone, uintptr_t, uintptr_t, void *);
DECL_SYSCALL1(sethostname, char *);
DECL_SYSCALL0(gethostname);
DECL_SYSCALL1(gethostname, char *);
DECL_SYSCALL0(mousedevice);
DECL_SYSCALL2(mkdir, char *, unsigned int);
DECL_SYSCALL2(shm_obtain, char *, size_t *);

View File

@ -49,7 +49,7 @@ DEFN_SYSCALL1(chdir, 28, char *);
DEFN_SYSCALL2(getcwd, 29, char *, size_t);
DEFN_SYSCALL3(clone, 30, uintptr_t, uintptr_t, void *);
DEFN_SYSCALL1(sethostname, 31, char *);
DEFN_SYSCALL0(gethostname, 32);
DEFN_SYSCALL1(gethostname, 32, char *);
DEFN_SYSCALL0(mousedevice, 33);
DEFN_SYSCALL2(mkdir, 34, char *, unsigned int);
DEFN_SYSCALL2(shm_obtain, 35, char *, size_t *);