home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.2 (Developer) / NS_dev_3.2.iso / NextDeveloper / Source / GNU / cctools / include / stuff / execute.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-09-17  |  265 b   |  9 lines

  1. /*
  2.  * execute() does an execvp using the argv passed to it.  If the parameter
  3.  * verbose is non-zero the command is printed to stderr.  A non-zero return
  4.  * value indicates success zero indicates failure.
  5.  */
  6. extern int execute(
  7.     char **argv,
  8.     long verbose);
  9.