From 8d1d19d347b070297d8e91b8a85a3ed5c763fbbd Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Wed, 10 May 2000 19:00:45 +0000 Subject: [PATCH] fp_except => fp_except_t for consistancy with the i386 and the tradition C methoid of nameing types. --- include/ieeefp.h | 9 +++++---- lib/libc/alpha/gen/fpgetmask.c | 5 +++-- lib/libc/alpha/gen/fpgetsticky.c | 3 ++- lib/libc/alpha/gen/fpsetmask.c | 7 ++++--- lib/libc/alpha/gen/fpsetsticky.c | 5 +++-- 5 files changed, 17 insertions(+), 12 deletions(-) diff --git a/include/ieeefp.h b/include/ieeefp.h index 37cd9a969ef..4ae8bc81bd4 100644 --- a/include/ieeefp.h +++ b/include/ieeefp.h @@ -1,4 +1,5 @@ /* $NetBSD: ieeefp.h,v 1.4 1998/01/09 08:03:43 perry Exp $ */ +/* $FreeBSD$ */ /* * Written by J.T. Conklin, Apr 6, 1995 @@ -17,10 +18,10 @@ __BEGIN_DECLS extern fp_rnd fpgetround __P((void)); extern fp_rnd fpsetround __P((fp_rnd)); -extern fp_except fpgetmask __P((void)); -extern fp_except fpsetmask __P((fp_except)); -extern fp_except fpgetsticky __P((void)); -extern fp_except fpsetsticky __P((fp_except)); +extern fp_except_t fpgetmask __P((void)); +extern fp_except_t fpsetmask __P((fp_except_t)); +extern fp_except_t fpgetsticky __P((void)); +extern fp_except_t fpsetsticky __P((fp_except_t)); __END_DECLS #endif /* __i386__ */ diff --git a/lib/libc/alpha/gen/fpgetmask.c b/lib/libc/alpha/gen/fpgetmask.c index 516ae981d55..466ec214e07 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 c0ff4d75c88..c74eafd5af0 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 #include -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 05201ce81d4..72c3a5495d8 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 ae0d742f79f..60807c1bd9f 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 #include -fp_except +fp_except_t fpsetsticky(sticky) - fp_except sticky; + fp_except_t sticky; { double fpcrval; u_int64_t old,new ;