diff options
author | Paul Smith <psmith@gnu.org> | 2013-09-21 17:37:59 -0400 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2013-09-21 17:37:59 -0400 |
commit | d2d44f76c4d86017ccbe6f70ef6318d71947e6d7 (patch) | |
tree | 8e22c54c2772d214116a761a5bebd37ff721b101 /output.h | |
parent | 6c3e88e60f2c7d2bff3aa1967afcc59f27626c48 (diff) | |
download | make-d2d44f76c4d86017ccbe6f70ef6318d71947e6d7.tar.gz |
Invert the #define for output-sync: turn it off with NO_OUTPUT_SYNC
Diffstat (limited to 'output.h')
-rw-r--r-- | output.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |