summaryrefslogtreecommitdiff
path: root/hash.h
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2002-09-11 16:55:44 +0000
committerPaul Smith <psmith@gnu.org>2002-09-11 16:55:44 +0000
commit4a11acf04705a07b78d8ddf71cfc90ce2607cdd8 (patch)
tree61aafd0099e1a25e584e7f768a4d41c1732b3579 /hash.h
parent5df75e726567954acd8cec5fb247a6124fa8a9e0 (diff)
downloadgunmake-4a11acf04705a07b78d8ddf71cfc90ce2607cdd8.tar.gz
Fix HAVE_BROKEN_RESTART logic.
Fix hash.h typos (only noticed when using Windows). Update .cvsignore files.
Diffstat (limited to 'hash.h')
-rw-r--r--hash.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/hash.h b/hash.h
index c1b3ea4..405f1da 100644
--- a/hash.h
+++ b/hash.h
@@ -104,7 +104,7 @@ extern void *hash_deleted_item;
} while (0)
#define STRING_COMPARE(X, Y, RESULT) do { \
- _RESULT_ = strcmp ((X), (Y)); \
+ RESULT = strcmp ((X), (Y)); \
} while (0)
#define return_STRING_COMPARE(X, Y) do { \
return strcmp ((X), (Y)); \
@@ -140,7 +140,7 @@ extern void *hash_deleted_item;
} while (0)
#define STRING_N_COMPARE(X, Y, N, RESULT) do { \
- _RESULT_ = strncmp ((X), (Y), (N)); \
+ RESULT = strncmp ((X), (Y), (N)); \
} while (0)
#define return_STRING_N_COMPARE(X, Y, N) do { \
return strncmp ((X), (Y), (N)); \
@@ -173,7 +173,7 @@ extern void *hash_deleted_item;
} while (0)
#define ISTRING_COMPARE(X, Y, RESULT) do { \
- _RESULT_ = strcmpi ((X), (Y)); \
+ RESULT = strcmpi ((X), (Y)); \
} while (0)
#define return_ISTRING_COMPARE(X, Y) do { \
return strcmpi ((X), (Y)); \