/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
*/
#include "lint.h"
#include <unistd.h>
#include <fcntl.h>
int
{
}
int
{
/*
* XPG4v2 link() requires that the link count of a symbolic
* link target be updated rather than the link itself. This
* matches SunOS 4.x and other BSD based implementations.
* However, the SVR4 merge apparently introduced the change
* that allowed link(src, dest) when "src" was a symbolic link,
* to create "dest" as a hard link to "src". Hence, the link
* count of the symbolic link is updated rather than the target
* of the symbolic link. This latter behavior remains for
* non-XPG4 based environments. For a more detailed discussion,
* see bug 1256170.
*/
if (__xpg4 != 0)
}