10Sstevel@tonic-gate /*
20Sstevel@tonic-gate * CDDL HEADER START
30Sstevel@tonic-gate *
40Sstevel@tonic-gate * The contents of this file are subject to the terms of the
51651Spetede * Common Development and Distribution License (the "License").
61651Spetede * You may not use this file except in compliance with the License.
70Sstevel@tonic-gate *
80Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
90Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing.
100Sstevel@tonic-gate * See the License for the specific language governing permissions
110Sstevel@tonic-gate * and limitations under the License.
120Sstevel@tonic-gate *
130Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each
140Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
150Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the
160Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying
170Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner]
180Sstevel@tonic-gate *
190Sstevel@tonic-gate * CDDL HEADER END
200Sstevel@tonic-gate */
211219Sraf
220Sstevel@tonic-gate /*
23*6812Sraf * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
240Sstevel@tonic-gate * Use is subject to license terms.
250Sstevel@tonic-gate */
260Sstevel@tonic-gate
270Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI"
280Sstevel@tonic-gate
290Sstevel@tonic-gate /*
300Sstevel@tonic-gate * This file is used to verify that the standalone's external dependencies
310Sstevel@tonic-gate * haven't changed in a way that'll break things that use it.
320Sstevel@tonic-gate */
330Sstevel@tonic-gate
__umem_assert_failed(void)340Sstevel@tonic-gate void __umem_assert_failed(void) {}
atomic_add_64(void)35*6812Sraf void atomic_add_64(void) {}
atomic_add_32_nv(void)36*6812Sraf void atomic_add_32_nv(void) {}
dladdr1(void)37*6812Sraf void dladdr1(void) {}
bcopy(void)380Sstevel@tonic-gate void bcopy(void) {}
bzero(void)390Sstevel@tonic-gate void bzero(void) {}
exit(void)400Sstevel@tonic-gate void exit(void) {}
getenv(void)410Sstevel@tonic-gate void getenv(void) {}
gethrtime(void)420Sstevel@tonic-gate void gethrtime(void) {}
membar_producer(void)430Sstevel@tonic-gate void membar_producer(void) {}
memcpy(void)440Sstevel@tonic-gate void memcpy(void) {}
_memcpy(void)451651Spetede void _memcpy(void) {}
memset(void)460Sstevel@tonic-gate void memset(void) {}
snprintf(void)470Sstevel@tonic-gate void snprintf(void) {}
strchr(void)480Sstevel@tonic-gate void strchr(void) {}
strcmp(void)490Sstevel@tonic-gate void strcmp(void) {}
strlen(void)500Sstevel@tonic-gate void strlen(void) {}
strncpy(void)510Sstevel@tonic-gate void strncpy(void) {}
strrchr(void)520Sstevel@tonic-gate void strrchr(void) {}
strtoul(void)530Sstevel@tonic-gate void strtoul(void) {}
umem_err_recoverable(void)540Sstevel@tonic-gate void umem_err_recoverable(void) {}
umem_panic(void)550Sstevel@tonic-gate void umem_panic(void) {}
vsnprintf(void)560Sstevel@tonic-gate void vsnprintf(void) {}
570Sstevel@tonic-gate
580Sstevel@tonic-gate #ifdef __i386
__mul64(void)590Sstevel@tonic-gate void __mul64(void) {}
__rem64(void)600Sstevel@tonic-gate void __rem64(void) {}
__div64(void)610Sstevel@tonic-gate void __div64(void) {}
620Sstevel@tonic-gate
630Sstevel@tonic-gate #ifdef __GNUC__
__divdi3(void)640Sstevel@tonic-gate void __divdi3(void) {}
__moddi3(void)650Sstevel@tonic-gate void __moddi3(void) {}
660Sstevel@tonic-gate #endif /* __GNUC__ */
670Sstevel@tonic-gate
680Sstevel@tonic-gate #endif /* __i386 */
690Sstevel@tonic-gate
700Sstevel@tonic-gate int __ctype;
710Sstevel@tonic-gate int errno;
72