r6831@lvps87-230-33-50: verhaegs | 2008-02-03 14:08:57 +0100
[tangerine.git] / compiler / clib / link.c
blob2a7f1a6260715c82858bf494197fdb4474813715
1 /*
2 Copyright © 2004, The AROS Development Team. All rights reserved.
3 $Id$
5 POSIX function link().
6 */
8 #include "__errno.h"
10 #include <unistd.h>
12 int link(const char *oldpath, const char *newpath)
15 errno = EPERM;
16 return -1;
17 } /* link */