1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-12 15:06:44 +02:00

Include <stdio.h> if NDEBUG is not defined; needed on SunOS 4.

From Paul Eggert.
This commit is contained in:
Jim Meyering
1998-07-22 16:57:15 +00:00
parent ef8d2acace
commit 19c23eefb7

View File

@@ -36,6 +36,12 @@
# endif
#endif
/* Some pre-ANSI implementations (e.g. SunOS 4)
need stderr defined if assertion checking is enabled. */
#ifndef NDEBUG
# include <stdio.h>
#endif
#include <assert.h>
#include <errno.h>