Restored work-around for hangs when trying to use disk-based handlers
[tangerine.git] / compiler / clib / execl.c
blob56086b2ace21f65ca07c623d5a61a5b3d92a49fa
1 /*
2 Copyright © 1995-2003, The AROS Development Team. All rights reserved.
3 $Id$
5 POSIX function execl().
6 */
8 #include <aros/debug.h>
10 #include <unistd.h>
12 /*****************************************************************************
14 NAME */
16 int execl(
18 /* SYNOPSIS */
19 const char *path,
20 const char *arg, ...)
22 /* FUNCTION
24 INPUTS
26 RESULT
28 NOTES
30 EXAMPLE
32 BUGS
34 SEE ALSO
36 INTERNALS
38 ******************************************************************************/
40 # warning Implement execl()
41 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
43 return -1;
44 } /* execl() */