Skip to content

Commit 81aa88f

Browse files
committed
Fix SCCS IDs in fdlibm
Most of the legacy version control IDs in fdlibm are already simple comments at the beginning of the source files. However, in some files, there are leftover global variables and pragmas. (The global variable in e_pow.c even increases the .data section in both debug and release builds.) This patch turns all legacy IDs to comments of unified style. JerryScript-DCO-1.0-Signed-off-by: Akos Kiss [email protected]
1 parent 05e7a83 commit 81aa88f

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

third-party/fdlibm/e_pow.c

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11

2-
#ifndef lint
3-
static char sccsid[] = "@(#)e_pow.c 1.5 04/04/22 SMI";
4-
#endif
5-
2+
/* @(#)e_pow.c 1.5 04/04/22 */
63
/*
74
* ====================================================
85
* Copyright (C) 2004 by Sun Microsystems, Inc. All rights reserved.

third-party/fdlibm/e_sqrt.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
/* @(#)e_sqrt.c 1.3 95/01/18 */
23
/*
34
* ====================================================

third-party/fdlibm/k_tan.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#pragma ident "@(#)k_tan.c 1.5 04/04/22 SMI"
21

2+
/* @(#)k_tan.c 1.5 04/04/22 */
33
/*
44
* ====================================================
55
* Copyright 2004 Sun Microsystems, Inc. All Rights Reserved.

third-party/fdlibm/w_pow.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11

2-
32
/* @(#)w_pow.c 1.3 95/01/18 */
43
/*
54
* ====================================================

0 commit comments

Comments
 (0)