aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/reent/execr.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/reent/execr.c')
-rw-r--r--newlib/libc/reent/execr.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/newlib/libc/reent/execr.c b/newlib/libc/reent/execr.c
index 0fbddb9..8bc1208 100644
--- a/newlib/libc/reent/execr.c
+++ b/newlib/libc/reent/execr.c
@@ -53,11 +53,11 @@ DESCRIPTION
*/
int
-_execve_r (ptr, name, argv, env)
- struct _reent *ptr;
- char *name;
- char **argv;
- char **env;
+_DEFUN (_execve_r, (ptr, name, argv, env),
+ struct _reent *ptr _AND
+ char *name _AND
+ char **argv _AND
+ char **env)
{
int ret;
@@ -93,8 +93,8 @@ DESCRIPTION
#ifndef NO_FORK
int
-_fork_r (ptr)
- struct _reent *ptr;
+_DEFUN (_fork_r, (ptr),
+ struct _reent *ptr)
{
int ret;
@@ -130,9 +130,9 @@ DESCRIPTION
*/
int
-_wait_r (ptr, status)
- struct _reent *ptr;
- int *status;
+_DEFUN (_wait_r, (ptr, status),
+ struct _reent *ptr _AND
+ int *status)
{
int ret;