Deleted Added
full compact
math64.c (76116) math64.c (94290)
1/*******************************************************************
2** m a t h 6 4 . c
3** Forth Inspired Command Language - 64 bit math support routines
4** Author: John Sadler (john_sadler@alum.mit.edu)
5** Created: 25 January 1998
6** Rev 2.03: Support for 128 bit DP math. This file really ouught to
7** be renamed!
1/*******************************************************************
2** m a t h 6 4 . c
3** Forth Inspired Command Language - 64 bit math support routines
4** Author: John Sadler (john_sadler@alum.mit.edu)
5** Created: 25 January 1998
6** Rev 2.03: Support for 128 bit DP math. This file really ouught to
7** be renamed!
8** $Id: math64.c,v 1.5 2001-04-26 21:41:36-07 jsadler Exp jsadler $
8** $Id: math64.c,v 1.9 2001/12/05 07:21:34 jsadler Exp $
9*******************************************************************/
10/*
11** Copyright (c) 1997-2001 John Sadler (john_sadler@alum.mit.edu)
12** All rights reserved.
13**
14** Get the latest Ficl release at http://ficl.sourceforge.net
15**
9*******************************************************************/
10/*
11** Copyright (c) 1997-2001 John Sadler (john_sadler@alum.mit.edu)
12** All rights reserved.
13**
14** Get the latest Ficl release at http://ficl.sourceforge.net
15**
16** I am interested in hearing from anyone who uses ficl. If you have
17** a problem, a success story, a defect, an enhancement request, or
18** if you would like to contribute to the ficl release, please
19** contact me by email at the address above.
20**
16** L I C E N S E and D I S C L A I M E R
17**
18** Redistribution and use in source and binary forms, with or without
19** modification, are permitted provided that the following conditions
20** are met:
21** 1. Redistributions of source code must retain the above copyright
22** notice, this list of conditions and the following disclaimer.
23** 2. Redistributions in binary form must reproduce the above copyright

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

30** ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
31** FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32** DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33** OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34** HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35** LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36** OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37** SUCH DAMAGE.
21** L I C E N S E and D I S C L A I M E R
22**
23** Redistribution and use in source and binary forms, with or without
24** modification, are permitted provided that the following conditions
25** are met:
26** 1. Redistributions of source code must retain the above copyright
27** notice, this list of conditions and the following disclaimer.
28** 2. Redistributions in binary form must reproduce the above copyright

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

35** ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
36** FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37** DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38** OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39** HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
40** LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
41** OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
42** SUCH DAMAGE.
38**
39** I am interested in hearing from anyone who uses ficl. If you have
40** a problem, a success story, a defect, an enhancement request, or
41** if you would like to contribute to the ficl release, please send
42** contact me by email at the address above.
43**
44** $Id: math64.c,v 1.5 2001-04-26 21:41:36-07 jsadler Exp jsadler $
45*/
46
43*/
44
47/* $FreeBSD: head/sys/boot/ficl/math64.c 76116 2001-04-29 02:36:36Z dcs $ */
45/* $FreeBSD: head/sys/boot/ficl/math64.c 94290 2002-04-09 17:45:28Z dcs $ */
48
49#include "ficl.h"
50#include "math64.h"
51
52
53/**************************************************************************
54 m 6 4 A b s
55** Returns the absolute value of an DPINT

--- 508 unchanged lines hidden ---
46
47#include "ficl.h"
48#include "math64.h"
49
50
51/**************************************************************************
52 m 6 4 A b s
53** Returns the absolute value of an DPINT

--- 508 unchanged lines hidden ---