aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/posix
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/posix')
-rw-r--r--newlib/libc/posix/execl.c2
-rw-r--r--newlib/libc/posix/execle.c2
-rw-r--r--newlib/libc/posix/execlp.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libc/posix/execl.c b/newlib/libc/posix/execl.c
index fbad9f3..e25f219 100644
--- a/newlib/libc/posix/execl.c
+++ b/newlib/libc/posix/execl.c
@@ -20,7 +20,7 @@ static char ***p_environ = &environ;
int
_DEFUN(execl, (path, arg0, ...),
const char *path,
- const char *arg0 _DOTS)
+ const char *arg0, ...)
#else
diff --git a/newlib/libc/posix/execle.c b/newlib/libc/posix/execle.c
index c18555c..67387f5 100644
--- a/newlib/libc/posix/execle.c
+++ b/newlib/libc/posix/execle.c
@@ -15,7 +15,7 @@
int
_DEFUN(execle, (path, arg0, ...),
const char *path,
- const char *arg0 _DOTS)
+ const char *arg0, ...)
#else
diff --git a/newlib/libc/posix/execlp.c b/newlib/libc/posix/execlp.c
index 6b9c2f7..f1de21f 100644
--- a/newlib/libc/posix/execlp.c
+++ b/newlib/libc/posix/execlp.c
@@ -15,7 +15,7 @@
int
_DEFUN(execlp, (path, arg0, ...),
const char *path,
- const char *arg0 _DOTS)
+ const char *arg0, ...)
#else