NetBSD/lib/libc/string/strchr.c
perry 8079ec33a6 Replace complicated and ugly makefile gook to make memmove,memcpy by
-Ding the bcopy.c source (and similarly strchr from index.c, strrchr
from rindex.c) with stub .c files for memmove, memcpy, strchr and
strrchr that simply #define the appropriate thing and #include the
appropriate .c file. Inspired by the way many m-d .S files handle the
same thing. This radically simplifies the Makefile.inc for libc/string
(and libkern).
1998-08-04 04:48:16 +00:00

5 lines
97 B
C

/* $NetBSD: strchr.c,v 1.1 1998/08/04 04:48:17 perry Exp $ */
#define STRCHR
#include "index.c"