root/lib/execve.c

/* [previous][next][first][last][top][bottom][index][help] */
   1 /*
   2  *  linux/lib/execve.c
   3  *
   4  *  Copyright (C) 1991, 1992  Linus Torvalds
   5  */
   6 
   7 #define __LIBRARY__
   8 #include <linux/unistd.h>
   9 
  10 _syscall3(int,execve,const char *,file,char **,argv,char **,envp)
  11 

/* [previous][next][first][last][top][bottom][index][help] */