Add an assembly version of memset(3).

This commit is contained in:
eeh 2001-06-21 22:41:55 +00:00
parent 9bb435db31
commit 6541f113b9
2 changed files with 6 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# $NetBSD: Makefile.inc,v 1.1 1998/09/11 04:56:32 eeh Exp $
# $NetBSD: Makefile.inc,v 1.2 2001/06/21 22:41:55 eeh Exp $
SRCS+= bcmp.c bcopy.c bzero.S ffs.S index.c memchr.c memcmp.c memset.c \
SRCS+= bcmp.c bcopy.c bzero.S ffs.S index.c memchr.c memcmp.c memset.S \
rindex.c strcat.c strcmp.c strcpy.c strcspn.c strlen.S \
strncat.c strncmp.c strncpy.c strpbrk.c strsep.c \
strspn.c strstr.c swab.c

View File

@ -0,0 +1,4 @@
/* $NetBSD: memset.S,v 1.1 2001/06/21 22:41:56 eeh Exp $ */
#define MEMSET
#include "bzero.S"