summaryrefslogtreecommitdiff
path: root/PACE/pace/unistd.h
diff options
context:
space:
mode:
Diffstat (limited to 'PACE/pace/unistd.h')
-rw-r--r--PACE/pace/unistd.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/PACE/pace/unistd.h b/PACE/pace/unistd.h
index 1f8ef02a4bb..a4502b15344 100644
--- a/PACE/pace/unistd.h
+++ b/PACE/pace/unistd.h
@@ -92,21 +92,24 @@ extern "C" {
See POSIX standard (Internation Standard ISO/IEC 9945-1:1996;
IEEE Std 1003.1, 1996 Edition), Section 3.1.2.
*/
- PACE_INLINE int pace_execl (const char* path, const char* arg, ...);
+# define pace_execl execl
+ /* PACE_INLINE int pace_execl (const char* path, const char* arg, ...); */
/**
PACE's implementation of the POSIX function execle.
See POSIX standard (Internation Standard ISO/IEC 9945-1:1996;
IEEE Std 1003.1, 1996 Edition), Section 3.1.2.
*/
- PACE_INLINE int pace_execle (const char* path, const char* arg, ...);
+# define pace_execle execle
+ /* PACE_INLINE int pace_execle (const char* path, const char* arg, ...);*/
/**
PACE's implementation of the POSIX function execlp.
See POSIX standard (Internation Standard ISO/IEC 9945-1:1996;
IEEE Std 1003.1, 1996 Edition), Section 3.1.2.
*/
- PACE_INLINE int pace_execlp (const char* file, const char* arg, ...);
+# define pace_execlp execlp
+ /* PACE_INLINE int pace_execlp (const char* file, const char* arg, ...);*/
/**
PACE's implementation of the POSIX function execv.