Changed name of include file
This commit is contained in:
parent
b5c5f09b16
commit
9a294d4821
|
@ -13,7 +13,7 @@ flt_mul.c
|
|||
flt_nrm.c
|
||||
flt_str2fl.c
|
||||
flt_umin.c
|
||||
misc.h
|
||||
flt_misc.h
|
||||
ucmp.c
|
||||
split.c
|
||||
flt_arith.3
|
||||
|
|
|
@ -58,18 +58,18 @@ lintlib:
|
|||
lint $(INCLUDES) -Cflt $(SRC)
|
||||
mv llib-lflt.ln $(MODDIR)/lib
|
||||
|
||||
b64_add.$(SUF): misc.h flt_arith.h
|
||||
flt_ar2flt.$(SUF): misc.h flt_arith.h
|
||||
flt_div.$(SUF): misc.h flt_arith.h
|
||||
flt_nrm.$(SUF): misc.h flt_arith.h
|
||||
b64_sft.$(SUF): misc.h flt_arith.h
|
||||
flt_chk.$(SUF): misc.h flt_arith.h
|
||||
flt_flt2ar.$(SUF): misc.h flt_arith.h
|
||||
flt_str2fl.$(SUF): misc.h flt_arith.h
|
||||
flt_add.$(SUF): misc.h flt_arith.h
|
||||
flt_cmp.$(SUF): misc.h flt_arith.h
|
||||
flt_mul.$(SUF): misc.h flt_arith.h
|
||||
flt_modf.$(SUF): misc.h flt_arith.h
|
||||
flt_umin.$(SUF): misc.h
|
||||
ucmp.$(SUF): misc.h flt_arith.h
|
||||
split.$(SUF): misc.h flt_arith.h
|
||||
b64_add.$(SUF): flt_misc.h flt_arith.h
|
||||
flt_ar2flt.$(SUF): flt_misc.h flt_arith.h
|
||||
flt_div.$(SUF): flt_misc.h flt_arith.h
|
||||
flt_nrm.$(SUF): flt_misc.h flt_arith.h
|
||||
b64_sft.$(SUF): flt_misc.h flt_arith.h
|
||||
flt_chk.$(SUF): flt_misc.h flt_arith.h
|
||||
flt_flt2ar.$(SUF): flt_misc.h flt_arith.h
|
||||
flt_str2fl.$(SUF): flt_misc.h flt_arith.h
|
||||
flt_add.$(SUF): flt_misc.h flt_arith.h
|
||||
flt_cmp.$(SUF): flt_misc.h flt_arith.h
|
||||
flt_mul.$(SUF): flt_misc.h flt_arith.h
|
||||
flt_modf.$(SUF): flt_misc.h flt_arith.h
|
||||
flt_umin.$(SUF): flt_misc.h
|
||||
ucmp.$(SUF): flt_misc.h flt_arith.h
|
||||
split.$(SUF): flt_misc.h flt_arith.h
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
/* $Header$ */
|
||||
|
||||
# include "misc.h"
|
||||
# include "flt_misc.h"
|
||||
|
||||
int
|
||||
flt_b64_add(e1,e2)
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
/* $Header$ */
|
||||
|
||||
#include "misc.h"
|
||||
#include "flt_misc.h"
|
||||
|
||||
flt_b64_sft(e,n)
|
||||
register struct flt_mantissa *e;
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
/* $Header$ */
|
||||
|
||||
#include "misc.h"
|
||||
#include "flt_misc.h"
|
||||
|
||||
flt_add(e1,e2,e3)
|
||||
register flt_arith *e1,*e2,*e3;
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
/* $Header$ */
|
||||
|
||||
#include "misc.h"
|
||||
#include "flt_misc.h"
|
||||
#include <em_arith.h>
|
||||
|
||||
flt_arith2flt(n, e, uns)
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
/* $Header$ */
|
||||
|
||||
#include "misc.h"
|
||||
#include "flt_misc.h"
|
||||
|
||||
int flt_status = 0;
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
/* $Header$ */
|
||||
|
||||
#include "misc.h"
|
||||
#include "flt_misc.h"
|
||||
|
||||
int
|
||||
flt_cmp(e1, e2)
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
/* $Header$ */
|
||||
|
||||
#include "misc.h"
|
||||
#include "flt_misc.h"
|
||||
|
||||
flt_div(e1,e2,e3)
|
||||
register flt_arith *e1,*e2,*e3;
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
/* $Header$ */
|
||||
|
||||
#include "misc.h"
|
||||
#include "flt_misc.h"
|
||||
#include <em_arith.h>
|
||||
|
||||
arith
|
||||
|
|
22
modules/src/flt_arith/flt_misc.h
Normal file
22
modules/src/flt_arith/flt_misc.h
Normal file
|
@ -0,0 +1,22 @@
|
|||
/*
|
||||
* (c) copyright 1989 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
||||
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
||||
*/
|
||||
/* $Header$ */
|
||||
|
||||
#include <flt_arith.h>
|
||||
|
||||
/* some short-hands ... */
|
||||
#define m1 flt_mantissa.flt_h_32
|
||||
#define m2 flt_mantissa.flt_l_32
|
||||
|
||||
/* some constants */
|
||||
#define EXT_MAX 16384 /* max exponent */
|
||||
#define EXT_MIN (-16384) /* min exponent */
|
||||
|
||||
/* hiding of names: */
|
||||
#define ucmp _flt_ucmp
|
||||
#define flt_nrm _flt_nrm
|
||||
#define flt_chk _flt_chk
|
||||
#define flt_b64_add _flt_64add
|
||||
#define flt_split _flt_split
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
/* $Header$ */
|
||||
|
||||
#include "misc.h"
|
||||
#include "flt_misc.h"
|
||||
|
||||
flt_modf(e, ipart, fpart)
|
||||
register flt_arith *e, *ipart, *fpart;
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
/* $Header$ */
|
||||
|
||||
#include "misc.h"
|
||||
#include "flt_misc.h"
|
||||
|
||||
flt_mul(e1,e2,e3)
|
||||
register flt_arith *e1,*e2,*e3;
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
/* $Header$ */
|
||||
|
||||
#include "misc.h"
|
||||
#include "flt_misc.h"
|
||||
|
||||
flt_nrm(e)
|
||||
register flt_arith *e;
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
/* $Header$ */
|
||||
|
||||
#include <ctype.h>
|
||||
#include "misc.h"
|
||||
#include "flt_misc.h"
|
||||
|
||||
/* The following tables can be computed with the following bc(1)
|
||||
program:
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
/* $Header$ */
|
||||
|
||||
#include "misc.h"
|
||||
#include "flt_misc.h"
|
||||
|
||||
flt_umin(e)
|
||||
flt_arith *e;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* $Header$ */
|
||||
|
||||
#include "misc.h"
|
||||
#include "flt_misc.h"
|
||||
|
||||
flt_split(e, p)
|
||||
register flt_arith *e;
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
/* $Header$ */
|
||||
|
||||
#include "misc.h"
|
||||
#include "flt_misc.h"
|
||||
|
||||
int
|
||||
ucmp(l1,l2)
|
||||
|
|
Loading…
Reference in a new issue