diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-09-13 21:09:35 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-09-13 21:09:35 -0400 |
commit | 13cd969552409e05c941829f2aabb15e2f4d9a1f (patch) | |
tree | 5e104dd27e5f794d1f083d9a8fea516c9009eb39 /include/spawn.h | |
parent | 5e9deea0039204f3b29edb1ffe0e30325d456f84 (diff) | |
download | musl-13cd969552409e05c941829f2aabb15e2f4d9a1f.tar.gz musl-13cd969552409e05c941829f2aabb15e2f4d9a1f.tar.bz2 musl-13cd969552409e05c941829f2aabb15e2f4d9a1f.tar.xz musl-13cd969552409e05c941829f2aabb15e2f4d9a1f.zip |
fix various errors in function signatures/prototypes found by nsz
Diffstat (limited to 'include/spawn.h')
-rw-r--r-- | include/spawn.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 *); |