From: Jim Meyering Date: Wed, 19 Jun 1996 02:00:24 +0000 (+0000) Subject: (STREQ): New macro. X-Git-Tag: TEXTUTILS-1_18a~37 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b4e8fc709e2c10741834ccaff084b3ae5045dae2;p=platform%2Fupstream%2Fcoreutils.git (STREQ): New macro. --- diff --git a/src/system.h b/src/system.h index 4586ca4..2d71935 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)