Use RCSID macro for RCS ID's.

This commit is contained in:
jtc 1994-03-18 23:22:10 +00:00
parent 058c23f164
commit bdde9305da
23 changed files with 41 additions and 85 deletions

View File

@ -37,12 +37,10 @@
#include <machine/asm.h>
.data
.align 2
;_sccsid:
;.asciz "from: @(#)asincos.s 5.1 (Berkeley) 5/17/90"
_rcsid:
.asciz "$Id: e_acos.S,v 1.1 1994/02/11 18:20:43 jtc Exp $"
RCSID("$Id: e_acos.S,v 1.2 1994/03/18 23:22:10 jtc Exp $")
ENTRY(__ieee754_acos)
facosd sp@(4),fp0

View File

@ -37,13 +37,10 @@
#include <machine/asm.h>
.data
.align 2
;_sccsid:
;.asciz "from: @(#)asincos.s 5.1 (Berkeley) 5/17/90"
_rcsid:
.asciz "$Id: e_asin.S,v 1.1 1994/02/11 18:20:44 jtc Exp $"
RCSID("$Id: e_asin.S,v 1.2 1994/03/18 23:22:14 jtc Exp $")
ENTRY(__ieee754_asin)
fasind sp@(4),fp0

View File

@ -37,12 +37,10 @@
#include <machine/asm.h>
.data
.align 2
;_sccsid:
;.asciz "from: @(#)atanh.s 5.1 (Berkeley) 5/17/90"
_rcsid:
.asciz "$Id: e_atanh.S,v 1.1 1994/02/11 18:20:45 jtc Exp $"
RCSID("$Id: e_atanh.S,v 1.2 1994/03/18 23:22:19 jtc Exp $")
ENTRY(__ieee754_atanh)
fatanhd sp@(4),fp0

View File

@ -37,12 +37,10 @@
#include <machine/asm.h>
.data
.align 2
;_sccsid:
;.asciz "from: @(#)cosh.s 5.1 (Berkeley) 5/17/90"
_rcsid:
.asciz "$Id: e_cosh.S,v 1.1 1994/02/11 18:20:46 jtc Exp $"
RCSID("$Id: e_cosh.S,v 1.2 1994/03/18 23:22:21 jtc Exp $")
ENTRY(__ieee754_cosh)
fcoshd sp@(4),fp0

View File

@ -37,12 +37,10 @@
#include <machine/asm.h>
.data
.align 2
;_sccsid:
;.asciz "from: @(#)exp.s 5.1 (Berkeley) 5/17/90"
_rcsid:
.asciz "$Id: e_exp.S,v 1.1 1994/02/11 18:20:47 jtc Exp $"
RCSID("$Id: e_exp.S,v 1.2 1994/03/18 23:22:22 jtc Exp $")
ENTRY(__ieee754_exp)
fetoxd sp@(4),fp0

View File

@ -37,12 +37,10 @@
#include <machine/asm.h>
.data
.align 2
;_sccsid:
;.asciz "from: @(#)log.s 5.1 (Berkeley) 5/17/90"
_rcsid:
.asciz "$Id: e_log.S,v 1.1 1994/02/11 18:20:48 jtc Exp $"
RCSID("$Id: e_log.S,v 1.2 1994/03/18 23:22:24 jtc Exp $")
ENTRY(__ieee754_log)
flognd sp@(4),fp0

View File

@ -37,12 +37,10 @@
#include <machine/asm.h>
.data
.align 2
;_sccsid:
;.asciz "from: @(#)log10.s 5.1 (Berkeley) 5/17/90"
_rcsid:
.asciz "$Id: e_log10.S,v 1.1 1994/02/11 18:20:49 jtc Exp $"
RCSID("$Id: e_log10.S,v 1.2 1994/03/18 23:22:28 jtc Exp $")
ENTRY(__ieee754_log10)
flog10d sp@(4),fp0

View File

@ -37,12 +37,10 @@
#include <machine/asm.h>
.data
.align 2
;_sccsid:
;.asciz "from: @(#)sinh.s 5.1 (Berkeley) 5/17/90"
_rcsid:
.asciz "$Id: e_sinh.S,v 1.1 1994/02/11 18:20:50 jtc Exp $"
RCSID("$Id: e_sinh.S,v 1.2 1994/03/18 23:22:30 jtc Exp $")
ENTRY(__ieee754_sinh)
fsinhd sp@(4),fp0

View File

@ -37,12 +37,10 @@
#include <machine/asm.h>
.data
.align 2
;_sccsid:
;.asciz "from: @(#)sqrt.s 5.1 (Berkeley) 5/17/90"
_rcsid:
.asciz "$Id: e_sqrt.S,v 1.1 1994/03/12 01:16:38 jtc Exp $"
RCSID("$Id: e_sqrt.S,v 1.2 1994/03/18 23:22:32 jtc Exp $")
/*
* sqrt(x)

View File

@ -37,12 +37,10 @@
#include <machine/asm.h>
.data
.align 2
;_sccsid:
;.asciz "from: @(#)atan.s 5.1 (Berkeley) 5/17/90"
_rcsid:
.asciz "$Id: s_atan.S,v 1.1 1994/02/11 18:20:51 jtc Exp $"
RCSID("$Id: s_atan.S,v 1.2 1994/03/18 23:22:36 jtc Exp $")
ENTRY(atan)
fatand sp@(4),fp0

View File

@ -37,12 +37,10 @@
#include <machine/asm.h>
.data
.align 2
;_sccsid:
;.asciz "from: @(#)floor.s 5.1 (Berkeley) 5/17/90"
_rcsid:
.asciz "$Id: s_ceil.S,v 1.1 1994/03/12 01:10:51 jtc Exp $"
RCSID("$Id: s_ceil.S,v 1.2 1994/03/18 23:22:42 jtc Exp $")
| ceil(x)
| -floor(-x), for all real x

View File

@ -39,9 +39,8 @@
;_sccsid:
;.asciz "from: @(#)support.s 5.2 (Berkeley) 5/17/90"
_rcsid:
.asciz "$Id: s_copysign.S,v 1.1 1994/02/14 21:55:12 jtc Exp $"
RCSID("$Id: s_copysign.S,v 1.2 1994/03/18 23:22:47 jtc Exp $")
| copysign(x,y)
| returns x with the sign of y.

View File

@ -37,12 +37,10 @@
#include <machine/asm.h>
.data
.align 2
;_sccsid:
;.asciz "from: @(#)sincos.s 5.1 (Berkeley) 5/17/90"
_rcsid:
.asciz "$Id: s_cos.S,v 1.1 1994/02/11 18:20:52 jtc Exp $"
RCSID("$Id: s_cos.S,v 1.2 1994/03/18 23:22:50 jtc Exp $")
ENTRY(cos)
fcosd sp@(4),fp0

View File

@ -37,12 +37,10 @@
#include <machine/asm.h>
.data
.align 2
;_sccsid:
;.asciz "from: @(#)expm1.s 5.1 (Berkeley) 5/17/90"
_rcsid:
.asciz "$Id: s_expm1.S,v 1.1 1994/02/11 18:20:54 jtc Exp $"
RCSID("$Id: s_expm1.S,v 1.2 1994/03/18 23:22:56 jtc Exp $")
ENTRY(expm1)
fetoxm1d sp@(4),fp0

View File

@ -39,9 +39,8 @@
;_sccsid:
;.asciz "from: @(#)support.s 5.2 (Berkeley) 5/17/90"
_rcsid:
.asciz "$Id: s_finite.S,v 1.1 1994/02/14 21:55:20 jtc Exp $"
RCSID("$Id: s_finite.S,v 1.2 1994/03/18 23:23:02 jtc Exp $")
| finite(x)
| returns the value TRUE if -INF < x < +INF and returns FALSE otherwise.

View File

@ -37,12 +37,10 @@
#include <machine/asm.h>
.data
.align 2
;_sccsid:
;.asciz "from: @(#)floor.s 5.1 (Berkeley) 5/17/90"
_rcsid:
.asciz "$Id: s_floor.S,v 1.1 1994/03/12 01:10:52 jtc Exp $"
RCSID("$Id: s_floor.S,v 1.2 1994/03/18 23:23:03 jtc Exp $")
| floor(x)
| the largest integer no larger than x

View File

@ -37,12 +37,10 @@
#include <machine/asm.h>
.data
.align 2
;_sccsid:
;.asciz "from: @(#)log1p.s 5.1 (Berkeley) 5/17/90"
_rcsid:
.asciz "$Id: s_log1p.S,v 1.1 1994/02/11 18:20:55 jtc Exp $"
RCSID("$Id: s_log1p.S,v 1.2 1994/03/18 23:23:08 jtc Exp $")
ENTRY(log1p)
flognp1d sp@(4),fp0

View File

@ -39,9 +39,8 @@
;_sccsid:
;.asciz "from: @(#)support.s 5.2 (Berkeley) 5/17/90"
_rcsid:
.asciz "$Id: s_logb.S,v 1.2 1994/03/12 01:09:29 jtc Exp $"
RCSID("$Id: s_logb.S,v 1.3 1994/03/18 23:23:11 jtc Exp $")
| logb(x)
| returns the unbiased exponent of x, a signed integer in double precision,
@ -68,4 +67,3 @@ Ldone:
movel sp@+,d0
movel sp@+,d1
rts

View File

@ -37,12 +37,10 @@
#include <machine/asm.h>
.data
.align 2
;_sccsid:
;.asciz "from: @(#)floor.s 5.1 (Berkeley) 5/17/90"
_rcsid:
.asciz "$Id: s_rint.S,v 1.1 1994/03/12 01:10:53 jtc Exp $"
RCSID("$Id: s_rint.S,v 1.2 1994/03/18 23:23:14 jtc Exp $")
| rint(x)
| delivers integer nearest x in direction of prevailing rounding mode

View File

@ -39,9 +39,8 @@
;_sccsid:
;.asciz "from: @(#)support.s 5.2 (Berkeley) 5/17/90"
_rcsid:
.asciz "$Id: s_scalbn.S,v 1.1 1994/02/14 21:55:30 jtc Exp $"
RCSID("$Id: s_scalbn.S,v 1.2 1994/03/18 23:23:16 jtc Exp $")
| scalbn(x, N)
| returns x * (2**N), for integer values N.

View File

@ -37,12 +37,10 @@
#include <machine/asm.h>
.data
.align 2
;_sccsid:
;.asciz "from: @(#)sincos.s 5.1 (Berkeley) 5/17/90"
_rcsid:
.asciz "$Id: s_sin.S,v 1.1 1994/02/11 18:20:56 jtc Exp $"
RCSID("$Id: s_sin.S,v 1.2 1994/03/18 23:23:18 jtc Exp $")
ENTRY(sin)
fsind sp@(4),fp0

View File

@ -37,12 +37,10 @@
#include <machine/asm.h>
.data
.align 2
;_sccsid:
;.asciz "from: @(#)tan.s 5.1 (Berkeley) 5/17/90"
_rcsid:
.asciz "$Id: s_tan.S,v 1.1 1994/02/11 18:20:58 jtc Exp $"
RCSID("$Id: s_tan.S,v 1.2 1994/03/18 23:23:21 jtc Exp $")
ENTRY(tan)
ftand sp@(4),fp0

View File

@ -37,12 +37,10 @@
#include <machine/asm.h>
.data
.align 2
;_sccsid:
;.asciz "from: @(#)tanh.s 5.1 (Berkeley) 5/17/90"
_rcsid:
.asciz "$Id: s_tanh.S,v 1.1 1994/02/11 18:21:00 jtc Exp $"
RCSID("$Id: s_tanh.S,v 1.2 1994/03/18 23:23:23 jtc Exp $")
ENTRY(tanh)
ftanhd sp@(4),fp0