/*
* 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
*/
/*
* Copyright 2010 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/* Copyright (c) 1988 AT&T */
/* All Rights Reserved */
#include "lint.h"
#include <limits.h>
#include <stdarg.h>
#include <unistd.h>
#include <strings.h>
#include <errno.h>
#include "libc.h"
static int xpg4_fixup(int fd);
static void push_module(int fd);
int
{
return (xpg4_fixup(fd));
}
int
{
#if defined(_RETAIN_OLD_SYSCALLS)
return (xpg4_fixup(fd));
#else
#endif
}
#if !defined(_LP64)
int
{
return (xpg4_fixup(fd));
}
int
{
#if defined(_RETAIN_OLD_SYSCALLS)
return (xpg4_fixup(fd));
#else
#endif
}
#endif /* !_LP64 */
/*
* XPG4v2 requires that open of a slave pseudo terminal device
* provides the process with an interface that is identical to
* the terminal interface. For a more detailed discussion,
* see bugid 4025044.
*/
static int
{
return (fd);
}
/*
* Be careful to preserve errno.
*/
static int
{
int rval = 0;
/*
* Do this without strcpy() or strlen(),
* to avoid invoking the dynamic linker.
*/
while (*str2 != '\0')
/*
* Inline version of minor(dev), to avoid the dynamic linker.
*/
}
return (rval);
}
/*
* Converts a number to a string (null terminated).
*/
static void
{
int dig = 0;
int tempi;
tempi = i;
do {
dig++;
tempi /= 10;
} while (tempi);
*ptr = '\0';
while (--dig >= 0) {
i /= 10;
}
}
/*
* Push modules to provide tty semantics
*/
static void
{
}
}