source: rtems/cpukit/posix/src/execle.c @ 860c34e

4.104.114.95
Last change on this file since 860c34e was 874297f3, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/16/04 at 10:01:03

Remove stray white spaces.

  • Property mode set to 100644
File size: 215 bytes
Line 
1/*
2 *  execle() - POSIX 1003.1b 3.1.2
3 *
4 *  $Id$
5 */
6
7#if HAVE_CONFIG_H
8#include "config.h"
9#endif
10
11#include <errno.h>
12
13int execle(
14  const char *path,
15  char const *arg,
16  ...
17)
18{
19  errno = ENOSYS;
20  return -1;
21}
Note: See TracBrowser for help on using the repository browser.