libuutil_common.h revision 168404
1168404Spjd/*
2168404Spjd * CDDL HEADER START
3168404Spjd *
4168404Spjd * The contents of this file are subject to the terms of the
5168404Spjd * Common Development and Distribution License, Version 1.0 only
6168404Spjd * (the "License").  You may not use this file except in compliance
7168404Spjd * with the License.
8168404Spjd *
9168404Spjd * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10168404Spjd * or http://www.opensolaris.org/os/licensing.
11168404Spjd * See the License for the specific language governing permissions
12168404Spjd * and limitations under the License.
13168404Spjd *
14168404Spjd * When distributing Covered Code, include this CDDL HEADER in each
15168404Spjd * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16168404Spjd * If applicable, add the following below this CDDL HEADER, with the
17168404Spjd * fields enclosed by brackets "[]" replaced with your own identifying
18168404Spjd * information: Portions Copyright [yyyy] [name of copyright owner]
19168404Spjd *
20168404Spjd * CDDL HEADER END
21168404Spjd */
22168404Spjd
23168404Spjd/*
24168404Spjd * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
25168404Spjd * Use is subject to license terms.
26168404Spjd */
27168404Spjd
28168404Spjd#ifndef	_LIBUUTIL_COMMON_H
29168404Spjd#define	_LIBUUTIL_COMMON_H
30168404Spjd
31168404Spjd#pragma ident	"%Z%%M%	%I%	%E% SMI"
32168404Spjd
33168404Spjd#include <solaris.h>
34168404Spjd
35168404Spjd/*
36168404Spjd * We don't bind to the internal libc interfaces if this is a
37168404Spjd * native build.
38168404Spjd */
39168404Spjd#ifndef NATIVE_BUILD
40168404Spjd#include "c_synonyms.h"
41168404Spjd#endif
42168404Spjd
43168404Spjd#include <libuutil.h>
44168404Spjd#include <libuutil_impl.h>
45168404Spjd
46168404Spjd#endif	/* _LIBUUTIL_COMMON_H */
47