From 13cd969552409e05c941829f2aabb15e2f4d9a1f Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Tue, 13 Sep 2011 21:09:35 -0400 Subject: fix various errors in function signatures/prototypes found by nsz --- include/spawn.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/spawn.h') diff --git a/include/spawn.h b/include/spawn.h index 1bcb1bbf..99ec6f1d 100644 --- a/include/spawn.h +++ b/include/spawn.h @@ -34,9 +34,9 @@ typedef struct { } posix_spawn_file_actions_t; int posix_spawn(pid_t *, const char *, const posix_spawn_file_actions_t *, - const posix_spawnattr_t *, char **, char **); + const posix_spawnattr_t *, char *const [], char *const []); int posix_spawnp(pid_t *, const char *, const posix_spawn_file_actions_t *, - const posix_spawnattr_t *, char **, char **); + const posix_spawnattr_t *, char *const [], char *const []); int posix_spawnattr_init(posix_spawnattr_t *); int posix_spawnattr_destroy(posix_spawnattr_t *); -- cgit v1.2.1