summaryrefslogtreecommitdiffstats
path: root/lib/libc/i386/gen
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2002-03-23 02:10:28 +0000
committerobrien <obrien@FreeBSD.org>2002-03-23 02:10:28 +0000
commit2fdb91d36dafb60196705e412e96c95354ef61bc (patch)
tree8521247bfca41e2a89f521f79bf401f2301ab01c /lib/libc/i386/gen
parent4c2f5170459e21a582f3798933e11f26c41486bf (diff)
downloadFreeBSD-src-2fdb91d36dafb60196705e412e96c95354ef61bc.zip
FreeBSD-src-2fdb91d36dafb60196705e412e96c95354ef61bc.tar.gz
Restore CSRG ID's lost in January 1995.
Diffstat (limited to 'lib/libc/i386/gen')
-rw-r--r--lib/libc/i386/gen/_setjmp.S11
-rw-r--r--lib/libc/i386/gen/alloca.S14
-rw-r--r--lib/libc/i386/gen/fabs.S14
-rw-r--r--lib/libc/i386/gen/frexp.c3
-rw-r--r--lib/libc/i386/gen/isinf.c3
-rw-r--r--lib/libc/i386/gen/ldexp.c3
-rw-r--r--lib/libc/i386/gen/modf.S11
-rw-r--r--lib/libc/i386/gen/setjmp.S9
-rw-r--r--lib/libc/i386/gen/sigsetjmp.S10
9 files changed, 53 insertions, 25 deletions
diff --git a/lib/libc/i386/gen/_setjmp.S b/lib/libc/i386/gen/_setjmp.S
index 03a594c..d2b7b6e 100644
--- a/lib/libc/i386/gen/_setjmp.S
+++ b/lib/libc/i386/gen/_setjmp.S
@@ -34,10 +34,11 @@
* SUCH DAMAGE.
*/
-#if defined(LIBC_RCS) && !defined(lint)
- .text
- .asciz "$FreeBSD$"
-#endif /* LIBC_RCS and not lint */
+#if defined(LIBC_SCCS) && !defined(lint)
+ .asciz "@(#)_setjmp.s 5.1 (Berkeley) 4/23/90"
+#endif /* LIBC_SCCS and not lint */
+#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
/*
* C library -- _setjmp, _longjmp
@@ -49,8 +50,6 @@
* The previous signal state is NOT restored.
*/
-#include <machine/asm.h>
-
ENTRY(_setjmp)
movl 4(%esp),%eax
movl 0(%esp),%edx
diff --git a/lib/libc/i386/gen/alloca.S b/lib/libc/i386/gen/alloca.S
index 279f159..52e3226 100644
--- a/lib/libc/i386/gen/alloca.S
+++ b/lib/libc/i386/gen/alloca.S
@@ -34,10 +34,18 @@
* SUCH DAMAGE.
*/
-#if defined(LIBC_RCS) && !defined(lint)
- .text
+#if defined(LIBC_SCCS) && !defined(lint)
+ .asciz "@(#)alloca.s 5.2 (Berkeley) 5/14/90"
+#endif /* LIBC_SCCS and not lint */
+#if !defined(lint) && !defined(STRIP_FBSDID)
+#ifdef __ELF__
+ .ident "$FreeBSD$"
+#else
+ .data
.asciz "$FreeBSD$"
-#endif /* LIBC_RCS and not lint */
+ .previous
+#endif
+#endif
/* like alloc, but automatic automatic free in return */
diff --git a/lib/libc/i386/gen/fabs.S b/lib/libc/i386/gen/fabs.S
index 85fff00..0bce2ac 100644
--- a/lib/libc/i386/gen/fabs.S
+++ b/lib/libc/i386/gen/fabs.S
@@ -34,10 +34,18 @@
* SUCH DAMAGE.
*/
-#if defined(LIBC_RCS) && !defined(lint)
- .text
+#if defined(LIBC_SCCS) && !defined(lint)
+ .asciz "@(#)fabs.s 5.2 (Berkeley) 12/17/90"
+#endif /* LIBC_SCCS and not lint */
+#if !defined(lint) && !defined(STRIP_FBSDID)
+#ifdef __ELF__
+ .ident "$FreeBSD$"
+#else
+ .data
.asciz "$FreeBSD$"
-#endif /* LIBC_RCS and not lint */
+ .previous
+#endif
+#endif
#include <machine/asm.h>
diff --git a/lib/libc/i386/gen/frexp.c b/lib/libc/i386/gen/frexp.c
index 25baeca..37f6a57 100644
--- a/lib/libc/i386/gen/frexp.c
+++ b/lib/libc/i386/gen/frexp.c
@@ -31,6 +31,9 @@
* SUCH DAMAGE.
*/
+#if defined(LIBC_SCCS) && !defined(lint)
+static char sccsid[] = "@(#)frexp.c 8.1 (Berkeley) 6/4/93";
+#endif /* LIBC_SCCS and not lint */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
diff --git a/lib/libc/i386/gen/isinf.c b/lib/libc/i386/gen/isinf.c
index 4c49f9a..e735cd4 100644
--- a/lib/libc/i386/gen/isinf.c
+++ b/lib/libc/i386/gen/isinf.c
@@ -31,6 +31,9 @@
* SUCH DAMAGE.
*/
+#if defined(LIBC_SCCS) && !defined(lint)
+static char sccsid[] = "@(#)isinf.c 8.1 (Berkeley) 6/4/93";
+#endif /* LIBC_SCCS and not lint */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
diff --git a/lib/libc/i386/gen/ldexp.c b/lib/libc/i386/gen/ldexp.c
index bb82b14..65c2748 100644
--- a/lib/libc/i386/gen/ldexp.c
+++ b/lib/libc/i386/gen/ldexp.c
@@ -34,6 +34,9 @@
* SUCH DAMAGE.
*/
+#if defined(LIBC_SCCS) && !defined(lint)
+static char sccsid[] = "@(#)ldexp.c 8.1 (Berkeley) 6/4/93";
+#endif /* LIBC_SCCS and not lint */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
diff --git a/lib/libc/i386/gen/modf.S b/lib/libc/i386/gen/modf.S
index 41bdc45..426037b 100644
--- a/lib/libc/i386/gen/modf.S
+++ b/lib/libc/i386/gen/modf.S
@@ -34,10 +34,11 @@
* SUCH DAMAGE.
*/
-#if defined(LIBC_RCS) && !defined(lint)
- .text
- .asciz "$FreeBSD$"
-#endif /* LIBC_RCS and not lint */
+#if defined(LIBC_SCCS) && !defined(lint)
+ .asciz "@(#)modf.s 5.5 (Berkeley) 3/18/91"
+#endif /* LIBC_SCCS and not lint */
+#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
/*
* modf(value, iptr): return fractional part of value, and stores the
@@ -49,8 +50,6 @@
/* With CHOP mode on, frndint behaves as TRUNC does. Useful. */
-#include <machine/asm.h>
-
ENTRY(modf)
pushl %ebp
movl %esp,%ebp
diff --git a/lib/libc/i386/gen/setjmp.S b/lib/libc/i386/gen/setjmp.S
index ed85036..f64c77f 100644
--- a/lib/libc/i386/gen/setjmp.S
+++ b/lib/libc/i386/gen/setjmp.S
@@ -34,10 +34,11 @@
* SUCH DAMAGE.
*/
-#if defined(LIBC_RCS) && !defined(lint)
- .text
- .asciz "$FreeBSD$"
-#endif /* LIBC_RCS and not lint */
+#if defined(LIBC_SCCS) && !defined(lint)
+ .asciz "@(#)setjmp.s 5.1 (Berkeley) 4/23/90"
+#endif /* LIBC_SCCS and not lint */
+#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
/*
* C library -- _setjmp, _longjmp
diff --git a/lib/libc/i386/gen/sigsetjmp.S b/lib/libc/i386/gen/sigsetjmp.S
index 6fd1305..09b512d 100644
--- a/lib/libc/i386/gen/sigsetjmp.S
+++ b/lib/libc/i386/gen/sigsetjmp.S
@@ -32,12 +32,16 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
+ *
+ * @(#)setjmp.s 5.1 (Berkeley) 4/23/90"
*/
-#if defined(LIBC_RCS) && !defined(lint)
+#if defined(LIBC_SCCS) && !defined(lint)
.text
- .asciz "$FreeBSD$"
-#endif /* LIBC_RCS and not lint */
+ .asciz "$Id: sigsetjmp.S,v 1.1 1993/12/05 13:01:05 ats Exp $"
+#endif /* LIBC_SCCS and not lint */
+#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
#include "SYS.h"
OpenPOWER on IntegriCloud