From d5965b64de38e5ab899b39583655facd39ef6598 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Wed, 16 Dec 2020 09:31:46 +0700 Subject: [PATCH] Remove final instances of index/rindex defines. (#74) --- inc/os.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/inc/os.h b/inc/os.h index f1019fe..ca3b91d 100755 --- a/inc/os.h +++ b/inc/os.h @@ -86,8 +86,6 @@ #define SUNOS54 1 #endif #undef U_INT32_DECLARED_IN_AUTH -#define index strchr -#define rindex strrchr #define bzero(b,n) memset(b,0,n) #define bcmp(a,b,n) memcmp(a,b,n) #define bcopy(a,b,n) memcpy(b,a,n) @@ -97,8 +95,6 @@ #ifndef USE_DLPI #define USE_DLPI 1 #endif -#define index strchr -#define rindex strrchr #define signal sigset #define bzero(b,n) memset(b,0,n) #define bcmp(a,b,n) memcmp(a,b,n)