Autodoc corrections
[cake.git] / compiler / clib / link.c
bloba8d36da6bf971b0ec2ee6e2b31495eae40b2f358
1 /*
2 Copyright © 2004, The AROS Development Team. All rights reserved.
3 $Id$
5 POSIX function link().
6 */
8 #include "__errno.h"
10 /*****************************************************************************
12 NAME */
14 #include <unistd.h>
16 int link(
18 /* SYNOPSIS */
19 const char *oldpath,
20 const char *newpath)
22 /* FUNCTION
24 INPUTS
26 RESULT
28 NOTES
30 EXAMPLE
32 BUGS
34 SEE ALSO
36 INTERNALS
38 ******************************************************************************/
40 errno = EPERM;
41 return -1;
42 } /* link */