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 5*1651Spetede * Common Development and Distribution License (the "License"). 6*1651Spetede * 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 /* 231219Sraf * Copyright 2006 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 340Sstevel@tonic-gate void __umem_assert_failed(void) {} 350Sstevel@tonic-gate void _atomic_add_64(void) {} 360Sstevel@tonic-gate void _atomic_add_32_nv(void) {} 371219Sraf void _dladdr1(void) {} 380Sstevel@tonic-gate void bcopy(void) {} 390Sstevel@tonic-gate void bzero(void) {} 400Sstevel@tonic-gate void exit(void) {} 410Sstevel@tonic-gate void getenv(void) {} 420Sstevel@tonic-gate void gethrtime(void) {} 430Sstevel@tonic-gate void membar_producer(void) {} 440Sstevel@tonic-gate void memcpy(void) {} 45*1651Spetede void _memcpy(void) {} 460Sstevel@tonic-gate void memset(void) {} 470Sstevel@tonic-gate void snprintf(void) {} 480Sstevel@tonic-gate void strchr(void) {} 490Sstevel@tonic-gate void strcmp(void) {} 500Sstevel@tonic-gate void strlen(void) {} 510Sstevel@tonic-gate void strncpy(void) {} 520Sstevel@tonic-gate void strrchr(void) {} 530Sstevel@tonic-gate void strtoul(void) {} 540Sstevel@tonic-gate void umem_err_recoverable(void) {} 550Sstevel@tonic-gate void umem_panic(void) {} 560Sstevel@tonic-gate void vsnprintf(void) {} 570Sstevel@tonic-gate 580Sstevel@tonic-gate #ifdef __i386 590Sstevel@tonic-gate void __mul64(void) {} 600Sstevel@tonic-gate void __rem64(void) {} 610Sstevel@tonic-gate void __div64(void) {} 620Sstevel@tonic-gate 630Sstevel@tonic-gate #ifdef __GNUC__ 640Sstevel@tonic-gate void __divdi3(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