diff options
author | Paul Smith <psmith@gnu.org> | 2002-09-11 16:55:44 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2002-09-11 16:55:44 +0000 |
commit | 4a11acf04705a07b78d8ddf71cfc90ce2607cdd8 (patch) | |
tree | 61aafd0099e1a25e584e7f768a4d41c1732b3579 /hash.h | |
parent | 5df75e726567954acd8cec5fb247a6124fa8a9e0 (diff) | |
download | gunmake-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.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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)); \ |