Deleted Added
full compact
varargs.h (86551) varargs.h (86556)
1/*
2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

--- 31 unchanged lines hidden (view full) ---

40 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
41 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
42 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
43 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
44 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
45 * SUCH DAMAGE.
46 *
47 * from: @(#)varargs.h 8.3 (Berkeley) 3/22/94
1/*
2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

--- 31 unchanged lines hidden (view full) ---

40 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
41 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
42 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
43 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
44 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
45 * SUCH DAMAGE.
46 *
47 * from: @(#)varargs.h 8.3 (Berkeley) 3/22/94
48 * $FreeBSD: head/sys/sparc64/include/varargs.h 86551 2001-11-18 17:56:46Z jake $
48 * $FreeBSD: head/sys/sparc64/include/varargs.h 86556 2001-11-18 20:30:16Z jake $
49 */
50
49 */
50
51#ifndef _SPARC_VARARGS_H_
52#define _SPARC_VARARGS_H_
51#ifndef _MACHINE_VARARGS_H_
52#define _MACHINE_VARARGS_H_
53
54#include <machine/stdarg.h>
55
56#if __GNUC__ == 1
57#define __va_ellipsis
58#else
59#define __va_ellipsis ...
60#endif
61
62#define va_alist __builtin_va_alist
63#define va_dcl long __builtin_va_alist; __va_ellipsis
64
65#undef va_start
66#define va_start(ap) \
67 ((ap) = (va_list)__builtin_saveregs())
68
53
54#include <machine/stdarg.h>
55
56#if __GNUC__ == 1
57#define __va_ellipsis
58#else
59#define __va_ellipsis ...
60#endif
61
62#define va_alist __builtin_va_alist
63#define va_dcl long __builtin_va_alist; __va_ellipsis
64
65#undef va_start
66#define va_start(ap) \
67 ((ap) = (va_list)__builtin_saveregs())
68
69#endif /* !_SPARC_VARARGS_H_ */
69#endif /* !_MACHINE_VARARGS_H_ */