summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/execlp.c
blob: 0967aa82015c96b625c134e1dabcf52a9be1c50c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* 
 *  execlp() - POSIX 1003.1b 3.1.2
 *
 *  $Id$
 */

#include <errno.h>

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