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

#include <errno.h>

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