summaryrefslogtreecommitdiff
path: root/lib/libc/arch/i386/sys
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/arch/i386/sys')
-rw-r--r--lib/libc/arch/i386/sys/Ovfork.S6
-rw-r--r--lib/libc/arch/i386/sys/brk.S6
-rw-r--r--lib/libc/arch/i386/sys/cerror.S6
-rw-r--r--lib/libc/arch/i386/sys/exect.S6
-rw-r--r--lib/libc/arch/i386/sys/fork.S6
-rw-r--r--lib/libc/arch/i386/sys/rfork.S6
-rw-r--r--lib/libc/arch/i386/sys/sbrk.S6
-rw-r--r--lib/libc/arch/i386/sys/sigpending.S6
-rw-r--r--lib/libc/arch/i386/sys/sigprocmask.S6
-rw-r--r--lib/libc/arch/i386/sys/sigreturn.S6
-rw-r--r--lib/libc/arch/i386/sys/sigsuspend.S6
-rw-r--r--lib/libc/arch/i386/sys/syscall.S6
12 files changed, 12 insertions, 60 deletions
diff --git a/lib/libc/arch/i386/sys/Ovfork.S b/lib/libc/arch/i386/sys/Ovfork.S
index 428e9228447..c4f64416cae 100644
--- a/lib/libc/arch/i386/sys/Ovfork.S
+++ b/lib/libc/arch/i386/sys/Ovfork.S
@@ -1,3 +1,4 @@
+/* $OpenBSD: Ovfork.S,v 1.6 2005/08/07 11:30:38 espie Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
@@ -32,11 +33,6 @@
#include "SYS.h"
-#if defined(SYSLIBC_SCCS)
- .text
- .asciz "$OpenBSD: Ovfork.S,v 1.5 2003/06/02 20:18:30 millert Exp $"
-#endif /* SYSLIB_SCCS */
-
/*
* pid = vfork();
*
diff --git a/lib/libc/arch/i386/sys/brk.S b/lib/libc/arch/i386/sys/brk.S
index 3ab8de24b10..acae4399514 100644
--- a/lib/libc/arch/i386/sys/brk.S
+++ b/lib/libc/arch/i386/sys/brk.S
@@ -1,3 +1,4 @@
+/* $OpenBSD: brk.S,v 1.8 2005/08/07 11:30:38 espie Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
@@ -32,11 +33,6 @@
#include "SYS.h"
-#if defined(SYSLIBC_SCCS)
- .text
- .asciz "$OpenBSD: brk.S,v 1.7 2003/06/02 20:18:30 millert Exp $"
-#endif /* SYSLIB_SCCS */
-
.globl _end
.globl minbrk
.globl __curbrk
diff --git a/lib/libc/arch/i386/sys/cerror.S b/lib/libc/arch/i386/sys/cerror.S
index e0fdb66c295..5033c2f41ce 100644
--- a/lib/libc/arch/i386/sys/cerror.S
+++ b/lib/libc/arch/i386/sys/cerror.S
@@ -1,3 +1,4 @@
+/* $OpenBSD: cerror.S,v 1.7 2005/08/07 11:30:38 espie Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
@@ -32,11 +33,6 @@
#include "SYS.h"
-#if defined(SYSLIBC_SCCS)
- .text
- .asciz "$OpenBSD: cerror.S,v 1.6 2004/06/21 21:22:05 drahn Exp $"
-#endif /* SYSLIB_SCCS */
-
.globl _C_LABEL(errno)
_ENTRY(CERROR)
#ifdef PIC
diff --git a/lib/libc/arch/i386/sys/exect.S b/lib/libc/arch/i386/sys/exect.S
index 8ef9911f41d..363f3003f6e 100644
--- a/lib/libc/arch/i386/sys/exect.S
+++ b/lib/libc/arch/i386/sys/exect.S
@@ -1,3 +1,4 @@
+/* $OpenBSD: exect.S,v 1.6 2005/08/07 11:30:38 espie Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
@@ -33,11 +34,6 @@
#include "SYS.h"
#include <machine/psl.h>
-#if defined(SYSLIBC_SCCS)
- .text
- .asciz "$OpenBSD: exect.S,v 1.5 2003/06/02 20:18:30 millert Exp $"
-#endif /* SYSLIB_SCCS */
-
ENTRY(exect)
movl $(SYS_execve),%eax
pushf
diff --git a/lib/libc/arch/i386/sys/fork.S b/lib/libc/arch/i386/sys/fork.S
index 846cae19390..e8850dd5b5c 100644
--- a/lib/libc/arch/i386/sys/fork.S
+++ b/lib/libc/arch/i386/sys/fork.S
@@ -1,3 +1,4 @@
+/* $OpenBSD: fork.S,v 1.4 2005/08/07 11:30:38 espie Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
@@ -32,11 +33,6 @@
#include "SYS.h"
-#if defined(SYSLIBC_SCCS)
- .text
- .asciz "$OpenBSD: fork.S,v 1.3 2003/06/02 20:18:30 millert Exp $"
-#endif /* SYSLIB_SCCS */
-
SYSCALL(fork)
decl %edx /* from 1 to 0 in child, 0 to -1 in parent */
andl %edx,%eax
diff --git a/lib/libc/arch/i386/sys/rfork.S b/lib/libc/arch/i386/sys/rfork.S
index 8b8cf93b306..6ef6875208a 100644
--- a/lib/libc/arch/i386/sys/rfork.S
+++ b/lib/libc/arch/i386/sys/rfork.S
@@ -1,3 +1,4 @@
+/* $OpenBSD: rfork.S,v 1.3 2005/08/07 11:30:38 espie Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
@@ -32,11 +33,6 @@
#include "SYS.h"
-#if defined(SYSLIBC_SCCS)
- .text
- .asciz "$OpenBSD: rfork.S,v 1.2 2003/06/02 20:18:30 millert Exp $"
-#endif /* SYSLIB_SCCS */
-
SYSCALL(rfork)
decl %edx /* from 1 to 0 in child, 0 to -1 in parent */
andl %edx,%eax
diff --git a/lib/libc/arch/i386/sys/sbrk.S b/lib/libc/arch/i386/sys/sbrk.S
index 57d2ec8d04e..9d97e2c383e 100644
--- a/lib/libc/arch/i386/sys/sbrk.S
+++ b/lib/libc/arch/i386/sys/sbrk.S
@@ -1,3 +1,4 @@
+/* $OpenBSD: sbrk.S,v 1.8 2005/08/07 11:30:38 espie Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
@@ -32,11 +33,6 @@
#include "SYS.h"
-#if defined(SYSLIBC_SCCS)
- .text
- .asciz "$OpenBSD: sbrk.S,v 1.7 2003/06/02 20:18:30 millert Exp $"
-#endif /* SYSLIBC_SCCS */
-
.globl _end
.globl __curbrk
diff --git a/lib/libc/arch/i386/sys/sigpending.S b/lib/libc/arch/i386/sys/sigpending.S
index a3b2dd15b64..89317d8f791 100644
--- a/lib/libc/arch/i386/sys/sigpending.S
+++ b/lib/libc/arch/i386/sys/sigpending.S
@@ -1,3 +1,4 @@
+/* $OpenBSD: sigpending.S,v 1.4 2005/08/07 11:30:38 espie Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
@@ -32,11 +33,6 @@
#include "SYS.h"
-#if defined(SYSLIBC_SCCS)
- .text
- .asciz "$OpenBSD: sigpending.S,v 1.3 2003/06/02 20:18:30 millert Exp $"
-#endif /* SYSLIBC_SCCS */
-
SYSCALL(sigpending)
movl 4(%esp),%ecx # fetch pointer to...
movl %eax,(%ecx) # store old mask
diff --git a/lib/libc/arch/i386/sys/sigprocmask.S b/lib/libc/arch/i386/sys/sigprocmask.S
index ebbd2e217be..b0265042086 100644
--- a/lib/libc/arch/i386/sys/sigprocmask.S
+++ b/lib/libc/arch/i386/sys/sigprocmask.S
@@ -1,3 +1,4 @@
+/* $OpenBSD: sigprocmask.S,v 1.8 2005/08/07 11:30:38 espie Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
@@ -32,11 +33,6 @@
#include "SYS.h"
-#if defined(SYSLIBC_SCCS)
- .text
- .asciz "$OpenBSD: sigprocmask.S,v 1.7 2003/06/02 20:18:30 millert Exp $"
-#endif /* SYSLIBC_SCCS */
-
SYSENTRY(sigprocmask)
movl 8(%esp),%ecx # fetch new sigset pointer
testl %ecx,%ecx # check new sigset pointer
diff --git a/lib/libc/arch/i386/sys/sigreturn.S b/lib/libc/arch/i386/sys/sigreturn.S
index a82b0e829ec..897edac6b62 100644
--- a/lib/libc/arch/i386/sys/sigreturn.S
+++ b/lib/libc/arch/i386/sys/sigreturn.S
@@ -1,3 +1,4 @@
+/* $OpenBSD: sigreturn.S,v 1.7 2005/08/07 11:30:38 espie Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
@@ -32,11 +33,6 @@
#include "SYS.h"
-#if defined(SYSLIBC_SCCS)
- .text
- .asciz "$OpenBSD: sigreturn.S,v 1.6 2003/06/02 20:18:30 millert Exp $"
-#endif /* SYSLIBC_SCCS */
-
/*
* We must preserve the state of the registers as the user has set them up.
*/
diff --git a/lib/libc/arch/i386/sys/sigsuspend.S b/lib/libc/arch/i386/sys/sigsuspend.S
index 92303dcd3a3..c14858224cd 100644
--- a/lib/libc/arch/i386/sys/sigsuspend.S
+++ b/lib/libc/arch/i386/sys/sigsuspend.S
@@ -1,3 +1,4 @@
+/* $OpenBSD: sigsuspend.S,v 1.7 2005/08/07 11:30:38 espie Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
@@ -32,11 +33,6 @@
#include "SYS.h"
-#if defined(SYSLIBC_SCCS)
- .text
- .asciz "$OpenBSD: sigsuspend.S,v 1.6 2003/06/02 20:18:30 millert Exp $"
-#endif /* SYSLIBC_SCCS */
-
SYSENTRY(sigsuspend)
movl 4(%esp),%eax # fetch mask arg
movl (%eax),%eax # indirect to mask arg
diff --git a/lib/libc/arch/i386/sys/syscall.S b/lib/libc/arch/i386/sys/syscall.S
index d7349ecc029..aa86e1c763d 100644
--- a/lib/libc/arch/i386/sys/syscall.S
+++ b/lib/libc/arch/i386/sys/syscall.S
@@ -1,3 +1,4 @@
+/* $OpenBSD: syscall.S,v 1.8 2005/08/07 11:30:38 espie Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
@@ -32,11 +33,6 @@
#include "SYS.h"
-#if defined(SYSLIBC_SCCS)
- .text
- .asciz "$OpenBSD: syscall.S,v 1.7 2004/10/29 21:14:16 hshoexer Exp $"
-#endif /* SYSLIBC_SCCS */
-
SYSENTRY(syscall)
pop %ecx /* rta */
pop %eax /* syscall number */