1169691Skan/*-
2169691Skan * Copyright 2001 by Thomas Moestl <tmm@FreeBSD.org>.  All rights reserved.
3169691Skan *
4169691Skan * Redistribution and use in source and binary forms, with or without
5169691Skan * modification, are permitted provided that the following conditions
6169691Skan * are met:
7169691Skan * 1. Redistributions of source code must retain the above copyright
8169691Skan *    notice, this list of conditions and the following disclaimer.
9169691Skan * 2. Redistributions in binary form must reproduce the above copyright
10169691Skan *    notice, this list of conditions and the following disclaimer in the
11169691Skan *    documentation and/or other materials provided with the distribution.
12169691Skan *
13169691Skan * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14169691Skan * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15169691Skan * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16169691Skan * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
17169691Skan * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18169691Skan * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
19169691Skan * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
20169691Skan * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
21169691Skan * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
22169691Skan * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23169691Skan *
24169691Skan * $FreeBSD$
25169691Skan */
26169691Skan
27169691Skan#ifndef	_MACHINE_FP_H_
28169691Skan#define	_MACHINE_FP_H_
29169691Skan
30169691Skan#ifdef _KERNEL
31169691Skan
32169691Skan/*
33169691Skan * Note: The pointer passed to savefpctx must be aligned on a 64 byte
34169691Skan * boundary.
35169691Skan */
36169691Skanvoid	savefpctx(uint32_t *fp);
37169691Skan
38169691Skan#endif /* _KERNEL */
39169691Skan#endif /* !_MACHINE_FP_H_ */
40169691Skan