diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-10-11 02:12:20 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-10-11 02:12:20 +0200 |
commit | a2956f9016bc412e090e5f1b3910e8c636800452 (patch) | |
tree | 99bd3a6a1d2582fc54ab56519762a4e6aa6b4c82 /src/unistd/exec.c | |
parent | execvpe: simplify and fix errors (diff) | |
download | slibc-a2956f9016bc412e090e5f1b3910e8c636800452.tar.gz slibc-a2956f9016bc412e090e5f1b3910e8c636800452.tar.bz2 slibc-a2956f9016bc412e090e5f1b3910e8c636800452.tar.xz |
typo
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/unistd/exec.c')
-rw-r--r-- | src/unistd/exec.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/unistd/exec.c b/src/unistd/exec.c index ab1a09a..5e7aeb8 100644 --- a/src/unistd/exec.c +++ b/src/unistd/exec.c @@ -130,7 +130,7 @@ int execlp(const char* file, ... /*, NULL */) * As a slibc extension, it can be empty. * This list shall be terminated by a `NULL` sentinel. * @param envp The list of environment variables the new program shall - * have set. Each element shall be foramtted $name=$value. + * have set. Each element shall be formatted $name=$value. * This list shall be `NULL`-terminated. The behaviour * is system-dependant if this argument is `NULL`. * @return This function does not return on success, @@ -166,7 +166,7 @@ int execle(const char* path, ... /*, NULL, char* const envp[] */) * As a slibc extension, it can be empty. * This list shall be terminated by a `NULL` sentinel. * @param envp The list of environment variables the new program shall - * have set. Each element shall be foramtted $name=$value. + * have set. Each element shall be formatted $name=$value. * This list shall be `NULL`-terminated. The behaviour * is system-dependant if this argument is `NULL`. * @return This function does not return on success, @@ -252,7 +252,7 @@ int execvp(const char* file, char* const argv[]) * be `NULL`-terminated. The behaviour is * system-dependant if this argument is `NULL`. * @param envp The list of environment variables the new program shall - * have set. Each element shall be foramtted $name=$value. + * have set. Each element shall be formatted $name=$value. * This list shall be `NULL`-terminated. The behaviour * is system-dependant if this argument is `NULL`. * @return This function does not return on success, @@ -288,7 +288,7 @@ int execve(const char* path, char* const argv[], char* const envp[]) * be `NULL`-terminated. The behaviour is * system-dependant if this argument is `NULL`. * @param envp The list of environment variables the new program shall - * have set. Each element shall be foramtted $name=$value. + * have set. Each element shall be formatted $name=$value. * This list shall be `NULL`-terminated. The behaviour * is system-dependant if this argument is `NULL`. * @return This function does not return on success, |