summaryrefslogtreecommitdiff
path: root/src/system.h
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1996-06-19 02:00:24 +0000
committerJim Meyering <jim@meyering.net>1996-06-19 02:00:24 +0000
commitb4e8fc709e2c10741834ccaff084b3ae5045dae2 (patch)
tree60708ba5723e8d6ec4032c54560f392efe23ee7a /src/system.h
parent487366d09105746d6c99ad90b52bb03afecc4535 (diff)
downloadcoreutils-b4e8fc709e2c10741834ccaff084b3ae5045dae2.tar.xz
(STREQ): New macro.
Diffstat (limited to 'src/system.h')
-rw-r--r--src/system.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/system.h b/src/system.h
index 4586ca4f0..2d7193514 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)