am 5c485373: am d3f0638a: libc: fix typo in waitid() declaration.

Merge commit '5c485373563c1183db2ba02ec2aca695d1c87cc8'

* commit '5c485373563c1183db2ba02ec2aca695d1c87cc8':
  libc: fix typo in waitid() declaration.
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 @@
  */
 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