8079ec33a6
-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).
5 lines
100 B
C
5 lines
100 B
C
/* $NetBSD: strrchr.c,v 1.1 1998/08/04 04:48:17 perry Exp $ */
|
|
|
|
#define STRRCHR
|
|
#include "rindex.c"
|