add a missing section header table index conversion
[tangerine.git] / compiler / clib / symlink.c
blobb8f67ffb0eb93b19924ab3a50af48fde57603b0c
1 /*
2 Copyright © 2004, The AROS Development Team. All rights reserved.
3 $Id$
5 POSIX function symlink().
6 */
8 #include <aros/debug.h>
10 #include <unistd.h>
11 #include "__errno.h"
13 int symlink(const char *oldpath, const char *newpath)
15 # warning Implement symlink()
16 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
18 errno = EPERM;
19 return -1;
20 } /* symlink */