1--- bc/util.c.orig	Tue Oct 26 09:16:25 2004
2+++ bc/util.c	Tue Oct 26 09:17:55 2004
3@@ -28,6 +28,11 @@
4
5 *************************************************************************/
6
7+#ifdef __APPLE__
8+#include <get_compat.h>
9+#else  /* !__APPLE__ */
10+#define COMPAT_MODE(a,b) (1)
11+#endif /* __APPLE__ */
12
13 #include "bcdefs.h"
14 #ifndef VARARGS
15@@ -346,7 +351,7 @@
16     }
17   else
18     {
19-      if (!std_only)
20+      if (!std_only && !COMPAT_MODE("bin/bc", "Unix2003"))
21 	{
22 	  out_col++;
23 	  if (out_col == line_size-1)
24