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





                                  



                   





                   
 



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

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

#include <errno.h>

int execlp(
  const char *file,
  const char *arg,
  ...
)
{
  errno = ENOSYS;
  return -1;
}