Skip to content

Commit

Permalink
Update syscall.c
Browse files Browse the repository at this point in the history
  • Loading branch information
Mahsa-h authored Dec 4, 2016
1 parent 19af8fa commit 00ae8f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions syscall.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ extern int sys_unlink(void);
extern int sys_wait(void);
extern int sys_write(void);
extern int sys_uptime(void);
extern int sys_getpid(void);
extern int sys_mygetpid(void);


static int (*syscalls[])(void) = {
Expand All @@ -123,7 +123,7 @@ static int (*syscalls[])(void) = {
[SYS_link] sys_link,
[SYS_mkdir] sys_mkdir,
[SYS_close] sys_close,
[SYS_getpid] sys_getpid,
[SYS_mygetpid] sys_mygetpid,
};

void
Expand Down

0 comments on commit 00ae8f4

Please sign in to comment.