purge remaining gpl code from clib, and make clib build again
[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 */