repo.or.cz
/
tangerine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
purge remaining gpl code from clib, and make clib build again
[tangerine.git]
/
compiler
/
clib
/
link.c
blob
2a7f1a6260715c82858bf494197fdb4474813715
1
/*
2
Copyright © 2004, The AROS Development Team. All rights reserved.
3
$Id$
4
5
POSIX function link().
6
*/
7
8
#include
"__errno.h"
9
10
#include <unistd.h>
11
12
int
link
(
const char
*
oldpath
,
const char
*
newpath
)
13
14
{
15
errno
=
EPERM
;
16
return
-
1
;
17
}
/* link */
18