1139825Simp/*-
282899Sjake * Copyright (c) 1986, 1989, 1991, 1993
382899Sjake *      The Regents of the University of California.  All rights reserved.
480708Sjake *
580708Sjake * Redistribution and use in source and binary forms, with or without
680708Sjake * modification, are permitted provided that the following conditions
780708Sjake * are met:
880708Sjake * 1. Redistributions of source code must retain the above copyright
980708Sjake *    notice, this list of conditions and the following disclaimer.
1080708Sjake * 2. Redistributions in binary form must reproduce the above copyright
1180708Sjake *    notice, this list of conditions and the following disclaimer in the
1280708Sjake *    documentation and/or other materials provided with the distribution.
1382899Sjake * 4. Neither the name of the University nor the names of its contributors
1482899Sjake *    may be used to endorse or promote products derived from this software
1582899Sjake *    without specific prior written permission.
1680708Sjake *
1782899Sjake * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1880708Sjake * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1980708Sjake * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2082899Sjake * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2180708Sjake * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2280708Sjake * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2380708Sjake * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2480708Sjake * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2580708Sjake * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2680708Sjake * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2780708Sjake * SUCH DAMAGE.
2880708Sjake *
2982899Sjake *      @(#)signal.h    8.1 (Berkeley) 6/11/93
3082899Sjake * 	from: FreeBSD: src/sys/i386/include/signal.h,v 1.13 2000/11/09
3180708Sjake * $FreeBSD$
3280708Sjake */
3380708Sjake
3480708Sjake#ifndef	_MACHINE_SIGNAL_H_
3580708Sjake#define	_MACHINE_SIGNAL_H_
3680708Sjake
37105014Smike#include <sys/cdefs.h>
38105014Smike
3980708Sjaketypedef	long sig_atomic_t;
4080708Sjake
41105014Smike#if __BSD_VISIBLE
4283053Sobrienstruct sigcontext {
43105014Smike	int	_dummy;
4480708Sjake};
45105014Smike#endif /* __BSD_VISIBLE */
4680708Sjake
4780708Sjake#endif /* !_MACHINE_SIGNAL_H_ */
48