Standardize on our SCM ID style.

This commit is contained in:
David E. O'Brien 2002-03-23 02:44:19 +00:00
parent 0f4f02856d
commit c04447ba03
26 changed files with 36 additions and 121 deletions

View File

@ -24,11 +24,8 @@
* SUCH DAMAGE.
*/
/*
* $FreeBSD$
*/
#include <machine/asm.h>
__FBSDID("$FreeBSD$");
/*
* _ctx_start((void *func)(int arg1, ..., argn),

View File

@ -37,20 +37,12 @@
#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$"
.previous
#endif
#endif
#include <machine/asm.h>
__FBSDID("$FreeBSD$");
/* like alloc, but automatic automatic free in return */
#include <machine/asm.h>
ENTRY(alloca)
popl %edx /* pop return addr */
popl %eax /* pop amount to allocate */

View File

@ -37,17 +37,8 @@
#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$"
.previous
#endif
#endif
#include <machine/asm.h>
__FBSDID("$FreeBSD$");
ENTRY(fabs)
fldl 4(%esp)

View File

@ -24,11 +24,8 @@
* SUCH DAMAGE.
*/
/*
* $FreeBSD$
*/
#include <machine/asm.h>
__FBSDID("$FreeBSD$");
/*
* Where do we define these?

View File

@ -22,10 +22,11 @@
* 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.
*
* $FreeBSD$
*/
#include <machine/asm.h>
__FBSDID("$FreeBSD$");
/*
* With thanks to John Dyson for the original version of this.
*/

View File

@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#if defined(LIBC_RCS) && !defined(lint)
.text
.asciz "$FreeBSD$"
#endif /* LIBC_RCS and not lint */
#include <machine/asm.h>
__FBSDID("$FreeBSD$");
ENTRY(div)
movl 4(%esp),%eax

View File

@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#if defined(LIBC_RCS) && !defined(lint)
.text
.asciz "$FreeBSD$"
#endif /* LIBC_RCS and not lint */
#include <machine/asm.h>
__FBSDID("$FreeBSD$");
ENTRY(ldiv)
movl 4(%esp),%eax

View File

@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#if defined(LIBC_RCS) && !defined(lint)
.text
.asciz "$FreeBSD$"
#endif /* LIBC_RCS and not lint */
#include <machine/asm.h>
__FBSDID("$FreeBSD$");
/*
* bcmp (void *b1, void *b2, size_t len)

View File

@ -34,8 +34,11 @@
*/
#include <machine/asm.h>
__FBSDID("$FreeBSD$");
#if 0
RCSID("$NetBSD: bcopy.S,v 1.6 1996/11/12 00:50:06 jtc Exp $")
#endif
/*
* (ov)bcopy (src,dst,cnt)

View File

@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#if defined(LIBC_RCS) && !defined(lint)
.text
.asciz "$FreeBSD$"
#endif /* LIBC_RCS and not lint */
#include <machine/asm.h>
__FBSDID("$FreeBSD$");
/*
* bzero (void *b, size_t len)

View File

@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#if defined(LIBC_RCS) && !defined(lint)
.text
.asciz "$FreeBSD$"
#endif /* LIBC_RCS and not lint */
#include <machine/asm.h>
__FBSDID("$FreeBSD$");
/*
* ffs(value)

View File

@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#if defined(LIBC_RCS) && !defined(lint)
.text
.asciz "$FreeBSD$"
#endif /* LIBC_RCS and not lint */
#include <machine/asm.h>
__FBSDID("$FreeBSD$");
/*
* index(s, c)

View File

@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#if defined(LIBC_RCS) && !defined(lint)
.text
.asciz "$FreeBSD$"
#endif /* LIBC_RCS and not lint */
#include <machine/asm.h>
__FBSDID("$FreeBSD$");
/*
* memchr (b, c, len)

View File

@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#if defined(LIBC_RCS) && !defined(lint)
.text
.asciz "$FreeBSD$"
#endif /* LIBC_RCS and not lint */
#include <machine/asm.h>
__FBSDID("$FreeBSD$");
/*
* memcmp (void *b1, void *b2, size_t len)

View File

@ -1,2 +1,5 @@
#include <machine/asm.h>
__FBSDID("$FreeBSD$");
#define MEMCOPY
#include "bcopy.S"

View File

@ -1,2 +1,5 @@
#include <machine/asm.h>
__FBSDID("$FreeBSD$");
#define MEMMOVE
#include "bcopy.S"

View File

@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#if defined(LIBC_RCS) && !defined(lint)
.text
.asciz "$FreeBSD$"
#endif /* LIBC_RCS and not lint */
#include <machine/asm.h>
__FBSDID("$FreeBSD$");
/*
* memset(void *b, int c, size_t len)

View File

@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#if defined(LIBC_RCS) && !defined(lint)
.text
.asciz "$FreeBSD$"
#endif /* LIBC_RCS and not lint */
#include <machine/asm.h>
__FBSDID("$FreeBSD$");
/*
* rindex(s, c)

View File

@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#if defined(LIBC_RCS) && !defined(lint)
.text
.asciz "$FreeBSD$"
#endif /* LIBC_RCS and not lint */
#include <machine/asm.h>
__FBSDID("$FreeBSD$");
/*
* strcat(s, append)

View File

@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#if defined(LIBC_RCS) && !defined(lint)
.text
.asciz "$FreeBSD$"
#endif /* LIBC_RCS and not lint */
#include <machine/asm.h>
__FBSDID("$FreeBSD$");
/*
* strchr(s, c)

View File

@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#if defined(LIBC_RCS) && !defined(lint)
.text
.asciz "$FreeBSD$"
#endif /* LIBC_RCS and not lint */
#include <machine/asm.h>
__FBSDID("$FreeBSD$");
/*
* strcmp(s1, s2)

View File

@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#if defined(LIBC_RCS) && !defined(lint)
.text
.asciz "$FreeBSD$"
#endif /* LIBC_RCS and not lint */
#include <machine/asm.h>
__FBSDID("$FreeBSD$");
/*
* strcpy (dst, src)

View File

@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#if defined(LIBC_RCS) && !defined(lint)
.text
.asciz "$FreeBSD$"
#endif /* LIBC_RCS and not lint */
#include <machine/asm.h>
__FBSDID("$FreeBSD$");
/*
* strlen (s)

View File

@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#if defined(LIBC_RCS) && !defined(lint)
.text
.asciz "$FreeBSD$"
#endif /* LIBC_RCS and not lint */
#include <machine/asm.h>
__FBSDID("$FreeBSD$");
/*
* strncmp(s1, s2, n)

View File

@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#if defined(LIBC_RCS) && !defined(lint)
.text
.asciz "$FreeBSD$"
#endif /* LIBC_RCS and not lint */
#include <machine/asm.h>
__FBSDID("$FreeBSD$");
/*
* strrchr(s, c)

View File

@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#if defined(LIBC_RCS) && !defined(lint)
.text
.asciz "$FreeBSD$"
#endif
#include <machine/asm.h>
__FBSDID("$FreeBSD$");
/*
* void