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
Don't try to setup and use X11 shared memory if
[tangerine.git]
/
compiler
/
clib
/
link.c
blob
a8d36da6bf971b0ec2ee6e2b31495eae40b2f358
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
/*****************************************************************************
11
12
NAME */
13
14
#include <unistd.h>
15
16
int
link
(
17
18
/* SYNOPSIS */
19
const char
*
oldpath
,
20
const char
*
newpath
)
21
22
/* FUNCTION
23
24
INPUTS
25
26
RESULT
27
28
NOTES
29
30
EXAMPLE
31
32
BUGS
33
34
SEE ALSO
35
36
INTERNALS
37
38
******************************************************************************/
39
{
40
errno
=
EPERM
;
41
return
-
1
;
42
}
/* link */
43