summaryrefslogtreecommitdiff
path: root/output.h
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2013-09-21 17:37:59 -0400
committerPaul Smith <psmith@gnu.org>2013-09-21 17:37:59 -0400
commit9c5c47678054a9ac9649b5804d98048eb9d7cc4e (patch)
tree8e22c54c2772d214116a761a5bebd37ff721b101 /output.h
parentecd4942fd48b12ba667440a6605fe3436b74bf46 (diff)
downloadmake-9c5c47678054a9ac9649b5804d98048eb9d7cc4e.tar.gz
Invert the #define for output-sync: turn it off with NO_OUTPUT_SYNC
Diffstat (limited to 'output.h')
-rw-r--r--output.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/output.h b/output.h
index 5fef436c..e0d5daaa 100644
--- a/output.h
+++ b/output.h
@@ -44,7 +44,7 @@ void output_start (void);
/* Show a message on stdout or stderr. Will start the output if needed. */
void outputs (int is_err, const char *msg);
-#ifdef OUTPUT_SYNC
+#ifndef NO_OUTPUT_SYNC
int output_tmpfd (void);
/* Dump any child output content to stdout, and reset it. */
void output_dump (struct output *out);