Penguin

Differences between version 2 and predecessor to the previous major change of exec(3).

Other diffs: Previous Revision, Previous Author, or view the Annotated Edit History

Newer page: version 2 Last edited on Saturday, January 29, 2005 4:26:16 pm by DanielLawson Revert
Older page: version 1 Last edited on Tuesday, June 4, 2002 12:24:17 am by perry Revert
@@ -16,25 +16,22 @@
 execl, execlp, execle, execv, execvp - execute a file 
 !!SYNOPSIS 
  
  
-__#include __  
+<verbatim>  
  
+#include <uinstd.h>  
  
-__extern char **environ;__  
  
+extern char **environ;  
  
-__ int execl( const char *__''path''__, const char  
- *__''arg''__, ...);  
-int execlp( const char *__''file''__, const char  
- *__''arg''__, ...);  
-int execle( const char *__''path''__, const char  
- *__''arg'' __, ..., char * const__  
- ''envp''__[[]);  
-int execv( const char *__''path''__, char *const__  
- ''argv''__[[]);  
-int execvp( const char *__''file''__, char *const__  
- ''argv''__[[]);__  
+  
+ int execl( const char *__''path''__, const char *__''arg''__, ...);  
+int execlp( const char *__''file''__, const char *__''arg''__, ...);  
+int execle( const char *__''path''__, const char *__''arg'' __, ..., char * const__ ''envp''__[[]);  
+int execv( const char *__''path''__, char *const__''argv''__[[]);  
+int execvp( const char *__''file''__, char *const__''argv''__[[]);  
+</verbatim>  
 !!DESCRIPTION 
  
  
 The __exec__ family of functions replaces the current 
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.