summaryrefslogtreecommitdiff
path: root/PACE/pace/posix/unistd.inl
diff options
context:
space:
mode:
authorjwh1 <jwh1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-07-12 21:12:55 +0000
committerjwh1 <jwh1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-07-12 21:12:55 +0000
commit49d86f23d0710fb227e646739bacef8051434818 (patch)
tree37a592e7cdc182e14ebdc18e8bd76a092555b60e /PACE/pace/posix/unistd.inl
parentabc9f80272c19d62deb9bea2194898c65d4fa72c (diff)
downloadATCD-49d86f23d0710fb227e646739bacef8051434818.tar.gz
Wed Jul 12 16:10:39 2000 John Heitmann <jwh1@cs.wustl.edu>
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)