Add END().

This commit is contained in:
maxv 2017-10-30 17:13:39 +00:00
parent e37d33aa4a
commit 2e01a9a26d
3 changed files with 9 additions and 6 deletions

View File

@ -1,6 +1,6 @@
/* $NetBSD: random.S,v 1.2 2008/04/28 20:24:06 martin Exp $ */
/* $NetBSD: random.S,v 1.3 2017/10/30 17:13:39 maxv Exp $ */
/*-
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
* All rights reserved.
*
@ -88,3 +88,4 @@ ENTRY(random)
subl $0x7fffffff,%eax
movl %eax,randseed(%rip)
ret
END(random)

View File

@ -1,6 +1,6 @@
/* $NetBSD: scanc.S,v 1.2 2008/04/28 20:24:06 martin Exp $ */
/* $NetBSD: scanc.S,v 1.3 2017/10/30 17:13:39 maxv Exp $ */
/*-
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
* All rights reserved.
*
@ -53,3 +53,4 @@ ENTRY(scanc)
2:
movl %ecx,%eax
ret
END(scanc)

View File

@ -1,6 +1,6 @@
/* $NetBSD: skpc.S,v 1.2 2008/04/28 20:24:06 martin Exp $ */
/* $NetBSD: skpc.S,v 1.3 2017/10/30 17:13:39 maxv Exp $ */
/*-
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
* All rights reserved.
*
@ -47,3 +47,4 @@ ENTRY(skpc)
1:
movl %ecx,%eax
ret
END(skpc)