summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1992-02-14 05:15:30 +0000
committerRoland McGrath <roland@redhat.com>1992-02-14 05:15:30 +0000
commitba251262db8f6eb0f1edb57b6bae223d5beda714 (patch)
tree9a79e7dceea76be8663a78a117c08d66c71b0d6d /main.c
parent0642eea2ab60f8293a359f4c77663fa6f5efe4ac (diff)
downloadgunmake-ba251262db8f6eb0f1edb57b6bae223d5beda714.tar.gz
Formerly main.c.~35~
Diffstat (limited to 'main.c')
-rw-r--r--main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.c b/main.c
index 6d19583..de17b8e 100644
--- a/main.c
+++ b/main.c
@@ -337,7 +337,8 @@ main (argc, argv, envp)
/* Make sure stdout is line-buffered. */
#if (defined (USGr3) || defined (HPUX) || defined (hpux) \
- || defined (M_XENIX) || defined (APOLLO) || defined (DGUX))
+ || defined (M_XENIX) || defined (APOLLO) || defined (DGUX) \
+ || defined (__IBMR2) || defined (POSIX))
setvbuf (stdout, (char *) 0, _IOLBF, BUFSIZ);
#else /* Not USGr3 and not HPUX et al. */
#ifdef USG