From b4e8fc709e2c10741834ccaff084b3ae5045dae2 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Wed, 19 Jun 1996 02:00:24 +0000 Subject: [PATCH] (STREQ): New macro. --- src/system.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/system.h b/src/system.h index 4586ca4f09..2d71935144 100644 --- a/src/system.h +++ b/src/system.h @@ -337,3 +337,5 @@ char *alloca (); # define textdomain(Domain) /* empty */ # define _(Text) Text #endif + +#define STREQ(a,b) (strcmp((a), (b)) == 0) -- 2.47.2