summaryrefslogtreecommitdiff
path: root/make.h
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2005-08-29 14:11:00 +0000
committerPaul Smith <psmith@gnu.org>2005-08-29 14:11:00 +0000
commitf7598efb676502e3ade6aac4a61be0984de4abda (patch)
tree788b89fb6c91f3ffb446e4bb49826a695c71c4b9 /make.h
parent6636dc1d5c41840afd58e402f7b6ea6ef25de943 (diff)
downloadgunmake-f7598efb676502e3ade6aac4a61be0984de4abda.tar.gz
Fix make.h preprocessor directive to work better with Windows compilers.
Fix some regression tests to (hopefully) work better on Windows.
Diffstat (limited to 'make.h')
-rw-r--r--make.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/make.h b/make.h
index b772d77..8636928 100644
--- a/make.h
+++ b/make.h
@@ -42,7 +42,7 @@ char *alloca ();
/* Use prototypes if available. */
-#if defined (__cplusplus) || (defined (__STDC__) && __STDC__)
+#if defined (__cplusplus) || defined (__STDC__)
# undef PARAMS
# define PARAMS(protos) protos
#else /* Not C++ or ANSI C. */