From: millert Date: Fri, 17 Jan 1997 07:51:41 +0000 (+0000) Subject: more r?index -> strr?chr changes X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=de0815e06e3611355431db1bf1b9114d401423af;p=openbsd more r?index -> strr?chr changes --- diff --git a/games/atc/include.h b/games/atc/include.h index bfa892e52a2..fb600f12768 100644 --- a/games/atc/include.h +++ b/games/atc/include.h @@ -72,8 +72,6 @@ #include #ifdef SYSV -#define index strchr -#define rindex strrchr #define bcopy(a,b,c) memcpy((b), (a), (c)) #define bzero(a,b) memset((a), '\0', (b)) #define srandom srand diff --git a/games/hack/config.h b/games/hack/config.h index f7bb5c5c171..0e2d7006fca 100644 --- a/games/hack/config.h +++ b/games/hack/config.h @@ -19,8 +19,6 @@ * * * Some routines are called differently - * index strchr - * rindex strrchr * Also, the code for suspend and various ioctls is only given for BSD4.2 * (I do not have access to a SYSV system.) */ diff --git a/games/hack/hack.h b/games/hack/hack.h index f097252fe8f..94d1278ff19 100644 --- a/games/hack/hack.h +++ b/games/hack/hack.h @@ -7,11 +7,6 @@ #include "config.h" #include -#ifndef BSD -#define index strchr -#define rindex strrchr -#endif BSD - #define Null(type) ((struct type *) 0) #include "def.objclass.h"