summaryrefslogtreecommitdiff
path: root/lib/libc
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2000-05-10 19:00:45 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2000-05-10 19:00:45 +0000
commit8d1d19d347b070297d8e91b8a85a3ed5c763fbbd (patch)
tree3e81960965006bda613102c84058d477a4a7ea79 /lib/libc
parent7b7f33c4c32df0e693136e001aa24f14c255b551 (diff)
Notes
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/alpha/gen/fpgetmask.c5
-rw-r--r--lib/libc/alpha/gen/fpgetsticky.c3
-rw-r--r--lib/libc/alpha/gen/fpsetmask.c7
-rw-r--r--lib/libc/alpha/gen/fpsetsticky.c5
4 files changed, 12 insertions, 8 deletions
diff --git a/lib/libc/alpha/gen/fpgetmask.c b/lib/libc/alpha/gen/fpgetmask.c
index 516ae981d55c..466ec214e07e 100644
--- a/lib/libc/alpha/gen/fpgetmask.c
+++ b/lib/libc/alpha/gen/fpgetmask.c
@@ -1,4 +1,5 @@
/* $NetBSD: fpgetmask.c,v 1.1 1995/04/29 05:10:55 cgd Exp $ */
+/* $FreeBSD$ */
/*
* Copyright (c) 1995 Christopher G. Demetriou
@@ -39,11 +40,11 @@ struct params {
u_int64_t mask;
};
-fp_except
+fp_except_t
fpgetmask()
{
struct params p;
sysarch(ALPHA_GET_FPMASK, (char *) &p);
- return((fp_except) p.mask);
+ return((fp_except_t) p.mask);
}
diff --git a/lib/libc/alpha/gen/fpgetsticky.c b/lib/libc/alpha/gen/fpgetsticky.c
index c0ff4d75c88a..c74eafd5af02 100644
--- a/lib/libc/alpha/gen/fpgetsticky.c
+++ b/lib/libc/alpha/gen/fpgetsticky.c
@@ -1,4 +1,5 @@
/* $NetBSD: fpgetsticky.c,v 1.1 1995/04/29 05:10:59 cgd Exp $ */
+/* $FreeBSD$ */
/*
* Copyright (c) 1995 Christopher G. Demetriou
@@ -35,7 +36,7 @@
#include <ieeefp.h>
#include <machine/fpu.h>
-fp_except
+fp_except_t
fpgetsticky()
{
double fpcrval;
diff --git a/lib/libc/alpha/gen/fpsetmask.c b/lib/libc/alpha/gen/fpsetmask.c
index 05201ce81d40..72c3a5495d8a 100644
--- a/lib/libc/alpha/gen/fpsetmask.c
+++ b/lib/libc/alpha/gen/fpsetmask.c
@@ -1,4 +1,5 @@
/* $NetBSD: fpsetmask.c,v 1.1 1995/04/29 05:11:01 cgd Exp $ */
+/* $FreeBSD$ */
/*
* Copyright (c) 1995 Christopher G. Demetriou
@@ -39,13 +40,13 @@ struct params {
u_int64_t mask;
};
-fp_except
+fp_except_t
fpsetmask(mask)
- fp_except mask;
+ fp_except_t mask;
{
struct params p;
p.mask = (u_int64_t) mask;
sysarch(ALPHA_SET_FPMASK, (char *) &p);
- return ((fp_except) p.mask);
+ return ((fp_except_t) p.mask);
}
diff --git a/lib/libc/alpha/gen/fpsetsticky.c b/lib/libc/alpha/gen/fpsetsticky.c
index ae0d742f79f0..60807c1bd9f3 100644
--- a/lib/libc/alpha/gen/fpsetsticky.c
+++ b/lib/libc/alpha/gen/fpsetsticky.c
@@ -1,4 +1,5 @@
/* $NetBSD: fpsetsticky.c,v 1.1 1995/04/29 05:11:04 cgd Exp $ */
+/* $FreeBSD$ */
/*
* Copyright (c) 1995 Christopher G. Demetriou
@@ -35,9 +36,9 @@
#include <ieeefp.h>
#include <machine/fpu.h>
-fp_except
+fp_except_t
fpsetsticky(sticky)
- fp_except sticky;
+ fp_except_t sticky;
{
double fpcrval;
u_int64_t old,new ;