1LINK(3F) LINK(3F)
2
3
4
6 link - make a link to an existing file
7
9 function link (name1, name2)
10 character*(*) name1, name2
11
12 integer function symlnk (name1, name2)
13 character*(*) name1, name2
14
16 Name1 must be the pathname of an existing file. Name2 is a pathname to
17 be linked to file name1. Name2 must not already exist. The returned
18 value will be 0 if successful; a system error code otherwise.
19
20 Symlnk creates a symbolic link to name1.
21
23 /usr/lib/libU77.a
24
26 link(2), symlink(2), perror(3F), unlink(3F)
27
29 Pathnames can be no longer than MAXPATHLEN as defined in <sys/param.h>.
30
31
32
334.2 Berkeley Distribution May 15, 1985 LINK(3F)