diff options
author | David 'Digit' Turner <digit@google.com> | 2010-10-13 15:46:55 +0200 |
---|---|---|
committer | David 'Digit' Turner <digit@google.com> | 2010-10-13 15:46:55 +0200 |
commit | d3f0638aeec0b1daf4d3347386a5e441d5a4bcc4 (patch) | |
tree | 16e6c518afa29d34f75035638d3defe82774d896 | |
parent | 1aa6708cc2b7792a647ada960a66a1e0146fb209 (diff) | |
download | bionic-d3f0638aeec0b1daf4d3347386a5e441d5a4bcc4.zip bionic-d3f0638aeec0b1daf4d3347386a5e441d5a4bcc4.tar.gz bionic-d3f0638aeec0b1daf4d3347386a5e441d5a4bcc4.tar.bz2 |
libc: fix typo in waitid() declaration.
The implementation file uses the correct spelling.
Change-Id: I572e336f8695a9754267c8d2e0a67b1b69bacb06
-rw-r--r-- | libc/include/sys/wait.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/include/sys/wait.h b/libc/include/sys/wait.h index 573e220..b30b7ec 100644 --- a/libc/include/sys/wait.h +++ b/libc/include/sys/wait.h @@ -56,7 +56,7 @@ extern pid_t wait4(pid_t, int *, int, struct rusage *); */ typedef int idtype_t; -extern int waidit(idtype_t which, id_t id, siginfo_t *info, int options); +extern int waitid(idtype_t which, id_t id, siginfo_t *info, int options); __END_DECLS |