diff options
author | obrien <obrien@FreeBSD.org> | 2003-03-03 01:09:46 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2003-03-03 01:09:46 +0000 |
commit | 49328f91e2c3ec89deb8db1e0e0fa563967bdd43 (patch) | |
tree | 70e87c26ae2985ce1d9b6cd898e11883adf42a65 /lib/libc/ia64/string | |
parent | 4007bcfd7b22842aa8a9859449e32be7ca59db85 (diff) | |
download | FreeBSD-src-49328f91e2c3ec89deb8db1e0e0fa563967bdd43.zip FreeBSD-src-49328f91e2c3ec89deb8db1e0e0fa563967bdd43.tar.gz |
Use __FBSDID.
Diffstat (limited to 'lib/libc/ia64/string')
-rw-r--r-- | lib/libc/ia64/string/bcopy.S | 1 | ||||
-rw-r--r-- | lib/libc/ia64/string/bzero.S | 1 | ||||
-rw-r--r-- | lib/libc/ia64/string/ffs.S | 2 | ||||
-rw-r--r-- | lib/libc/ia64/string/memcpy.S | 3 | ||||
-rw-r--r-- | lib/libc/ia64/string/memmove.S | 3 |
5 files changed, 5 insertions, 5 deletions
diff --git a/lib/libc/ia64/string/bcopy.S b/lib/libc/ia64/string/bcopy.S index 5a2f9fd..09f5bc0 100644 --- a/lib/libc/ia64/string/bcopy.S +++ b/lib/libc/ia64/string/bcopy.S @@ -27,6 +27,7 @@ */ #include <machine/asm.h> +__FBSDID("$FreeBSD$"); /* * Not the fastest bcopy in the world. diff --git a/lib/libc/ia64/string/bzero.S b/lib/libc/ia64/string/bzero.S index 1d1519e1f..bd08a1a 100644 --- a/lib/libc/ia64/string/bzero.S +++ b/lib/libc/ia64/string/bzero.S @@ -27,6 +27,7 @@ */ #include <machine/asm.h> +__FBSDID("$FreeBSD$"); ENTRY(bzero, 2) diff --git a/lib/libc/ia64/string/ffs.S b/lib/libc/ia64/string/ffs.S index c4ffd1b..d99d765 100644 --- a/lib/libc/ia64/string/ffs.S +++ b/lib/libc/ia64/string/ffs.S @@ -1,4 +1,3 @@ -/* $FreeBSD$ */ /* $NetBSD: ffs.S,v 1.3 1996/10/17 03:08:13 cgd Exp $ */ /* @@ -33,6 +32,7 @@ */ #include <machine/asm.h> +__FBSDID("$FreeBSD$"); ENTRY(ffs, 1) sxt4 r14=in0 ;; diff --git a/lib/libc/ia64/string/memcpy.S b/lib/libc/ia64/string/memcpy.S index 572e49a..d9937fb 100644 --- a/lib/libc/ia64/string/memcpy.S +++ b/lib/libc/ia64/string/memcpy.S @@ -22,11 +22,10 @@ * 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$"); ENTRY(memcpy,3) diff --git a/lib/libc/ia64/string/memmove.S b/lib/libc/ia64/string/memmove.S index 5586a60..06639d1 100644 --- a/lib/libc/ia64/string/memmove.S +++ b/lib/libc/ia64/string/memmove.S @@ -22,11 +22,10 @@ * 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$"); ENTRY(memmove,3) |