* libc/include/spawn.h (posix_spawn_file_actions_destroy): Fix typo
in function name. * libc/posix/posix_spawn.c (posix_spawn_file_actions_destroy): Ditto.
This commit is contained in:
parent
d482870337
commit
05efdc441d
|
@ -1,3 +1,9 @@
|
|||
2013-11-25 Corinna Vinschen <vinschen@redhat.com>
|
||||
|
||||
* libc/include/spawn.h (posix_spawn_file_actions_destroy): Fix typo
|
||||
in function name.
|
||||
* libc/posix/posix_spawn.c (posix_spawn_file_actions_destroy): Ditto.
|
||||
|
||||
2013-11-25 Sahil Patnayakuni <sahil.patnayakuni@gmail.com>
|
||||
|
||||
* libc/include/time.h (time): Add restrict keyword.
|
||||
|
|
|
@ -66,7 +66,7 @@ int _EXFUN(posix_spawnp, (pid_t * __restrict, const char * __restrict,
|
|||
* File descriptor actions
|
||||
*/
|
||||
int _EXFUN(posix_spawn_file_actions_init, (posix_spawn_file_actions_t *));
|
||||
int _EXFUN(posix_spawn_file_action_destroy, (posix_spawn_file_actions_t *));
|
||||
int _EXFUN(posix_spawn_file_actions_destroy, (posix_spawn_file_actions_t *));
|
||||
|
||||
int _EXFUN(posix_spawn_file_actions_addopen,
|
||||
(posix_spawn_file_actions_t * __restrict, int, const char * __restrict, int, mode_t)
|
||||
|
|
|
@ -339,7 +339,7 @@ _DEFUN(posix_spawn_file_actions_init, (ret),
|
|||
}
|
||||
|
||||
int
|
||||
_DEFUN(posix_spawn_file_action_destroy, (fa),
|
||||
_DEFUN(posix_spawn_file_actions_destroy, (fa),
|
||||
posix_spawn_file_actions_t *fa)
|
||||
{
|
||||
posix_spawn_file_actions_entry_t *fae;
|
||||
|
|
Loading…
Reference in New Issue