summaryrefslogtreecommitdiff
path: root/PACE/pace/posix/unistd.inl
diff options
context:
space:
mode:
Diffstat (limited to 'PACE/pace/posix/unistd.inl')
-rw-r--r--PACE/pace/posix/unistd.inl36
1 files changed, 0 insertions, 36 deletions
diff --git a/PACE/pace/posix/unistd.inl b/PACE/pace/posix/unistd.inl
index fbb5ce6b403..19b0f2001f8 100644
--- a/PACE/pace/posix/unistd.inl
+++ b/PACE/pace/posix/unistd.inl
@@ -82,18 +82,6 @@ pace_execv (const char * path,
/* if successful, this operation does NOT return */
}
-PACE_BROKEN_INLINE
-int
-pace_execl (const char* path, const char* arg, ...)
-{
- int result = 0;
- va_list ap;
- va_start (ap, arg);
- result = pace_execv (path, (char*const*)ap);
- va_end (ap);
- return result;
-}
-
PACE_INLINE
int
pace_execve (const char * path,
@@ -104,18 +92,6 @@ pace_execve (const char * path,
/* if successful, this operation does NOT return */
}
-PACE_BROKEN_INLINE
-int
-pace_execle (const char* path, const char* arg, ...)
-{
- int result = 0;
- va_list ap;
- va_start (ap, arg);
- result = pace_execve (path, (char*const*)ap, 0);
- va_end (ap);
- return result;
-}
-
PACE_INLINE
int
pace_execvp (const char * file,
@@ -125,18 +101,6 @@ pace_execvp (const char * file,
/* if successful, this operation does NOT return */
}
-PACE_BROKEN_INLINE
-int
-pace_execlp (const char* file, const char* arg, ...)
-{
- int result = 0;
- va_list ap;
- va_start (ap, arg);
- result = pace_execvp (file, (char*const*)ap);
- va_end (ap);
- return result;
-}
-
PACE_INLINE
int
pace_fdatasync (int fildes)