]> git.eshelyaron.com Git - emacs.git/commitdiff
[emacs]: Include stdio.h.
authorRichard M. Stallman <rms@gnu.org>
Tue, 30 Apr 2002 22:48:27 +0000 (22:48 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 30 Apr 2002 22:48:27 +0000 (22:48 +0000)
(GNU_LIBRARY_PENDING_OUTPUT_COUNT): New definition, conditional.

src/ChangeLog
src/s/gnu.h

index 3ff6ecbbf33fb5271a85e37368857542738badab..03723ead4fb996bec7b1de16d305ed0234b20221 100644 (file)
@@ -1,5 +1,8 @@
 2002-04-30  Richard M. Stallman  <rms@gnu.org>
 
+       * s/gnu.h [emacs]: Include stdio.h.
+       (GNU_LIBRARY_PENDING_OUTPUT_COUNT): New definition, conditional.
+
        * eval.c (do_autoload): Error if called while preparing to dump.
 
        * fns.c (Frequire): Error if need to load while preparing to dump.
index 6a38dc6f588b0d83ea19d6d559b04772f0a6f4ed..bc2c1fcfb3a2812ddc1d8f5007c347785d78c907 100644 (file)
@@ -78,3 +78,12 @@ Boston, MA 02111-1307, USA.  */
 #endif
 
 #define NARROWPROTO 1
+
+#ifdef emacs
+#include <stdio.h>  /* Get the definition of _IO_STDIO_H.  */
+#if defined(_IO_STDIO_H) || defined(_STDIO_USES_IOSTREAM)
+/* new C libio names */
+#define GNU_LIBRARY_PENDING_OUTPUT_COUNT(FILE) \
+  ((FILE)->_IO_write_ptr - (FILE)->_IO_write_base)
+#endif /* !_IO_STDIO_H */
+#endif /* emacs */