Add an assembly version of memset(3).
This commit is contained in:
parent
9bb435db31
commit
6541f113b9
|
@ -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 \
|
rindex.c strcat.c strcmp.c strcpy.c strcspn.c strlen.S \
|
||||||
strncat.c strncmp.c strncpy.c strpbrk.c strsep.c \
|
strncat.c strncmp.c strncpy.c strpbrk.c strsep.c \
|
||||||
strspn.c strstr.c swab.c
|
strspn.c strstr.c swab.c
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
/* $NetBSD: memset.S,v 1.1 2001/06/21 22:41:56 eeh Exp $ */
|
||||||
|
|
||||||
|
#define MEMSET
|
||||||
|
#include "bzero.S"
|
Loading…
Reference in New Issue