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

#include <errno.h>

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