summaryrefslogblamecommitdiffstats
path: root/cpukit/posix/src/execvp.c
blob: fd3c4812370b49a0e12ee07f5c8140641c2ed18e (plain) (tree)
1
2
3
4
5
6
7
8
9
10





                                  



                   



                   
                    




                 
/* 
 *  execvp() - POSIX 1003.1b 3.1.2
 *
 *  $Id$
 */

#if HAVE_CONFIG_H
#include "config.h"
#endif

#include <errno.h>

int execvp(
  const char *path,
  char *const argv[]
)
{
  errno = ENOSYS;
  return -1;
}