Skip to content

Commit

Permalink
[kernel] Fix: sys_kill ( ) prototype had arguments reversed
Browse files Browse the repository at this point in the history
  • Loading branch information
tkchia committed Mar 8, 2023
1 parent 758e8f8 commit cb79ba3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion elks/kernel/sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

static int C_A_D = 1;

extern int sys_kill(sig_t,pid_t);
extern int sys_kill(pid_t, sig_t);

/*
* Reboot system call: for obvious reasons only root may call it, and even
Expand Down

0 comments on commit cb79ba3

Please sign in to comment.