m4-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Changes to m4/src/m4.h,v [branch-1_4]


From: Eric Blake
Subject: Changes to m4/src/m4.h,v [branch-1_4]
Date: Mon, 22 Oct 2007 16:38:36 +0000

CVSROOT:        /sources/m4
Module name:    m4
Branch:         branch-1_4
Changes by:     Eric Blake <ericb>      07/10/22 16:38:34

Index: src/m4.h
===================================================================
RCS file: /sources/m4/m4/src/m4.h,v
retrieving revision 1.1.1.1.2.46
retrieving revision 1.1.1.1.2.47
diff -u -b -r1.1.1.1.2.46 -r1.1.1.1.2.47
--- src/m4.h    9 Oct 2007 16:51:09 -0000       1.1.1.1.2.46
+++ src/m4.h    22 Oct 2007 16:38:33 -0000      1.1.1.1.2.47
@@ -45,6 +45,7 @@
 #include "unistd--.h"
 #include "verror.h"
 #include "xalloc.h"
+#include "xprintf.h"
 #include "xvasprintf.h"
 
 /* Canonicalize UNIX recognition macros.  */
@@ -174,7 +175,7 @@
   do                                                           \
     {                                                          \
       if (debug != NULL)                                       \
-       fprintf (debug, Fmt, Arg1);                             \
+       xfprintf (debug, Fmt, Arg1);                            \
     }                                                          \
   while (0)
 
@@ -182,7 +183,7 @@
   do                                                           \
     {                                                          \
       if (debug != NULL)                                       \
-       fprintf (debug, Fmt, Arg1, Arg2, Arg3);                 \
+       xfprintf (debug, Fmt, Arg1, Arg2, Arg3);                \
     }                                                          \
   while (0)
 
@@ -192,7 +193,7 @@
       if (debug != NULL)                                       \
        {                                                       \
          debug_message_prefix ();                              \
-         fprintf (debug, Fmt);                                 \
+         xfprintf (debug, Fmt);                                \
          putc ('\n', debug);                                   \
        }                                                       \
     }                                                          \
@@ -204,7 +205,7 @@
       if (debug != NULL)                                       \
        {                                                       \
          debug_message_prefix ();                              \
-         fprintf (debug, Fmt, Arg1);                           \
+         xfprintf (debug, Fmt, Arg1);                          \
          putc ('\n', debug);                                   \
        }                                                       \
     }                                                          \
@@ -216,7 +217,7 @@
       if (debug != NULL)                                       \
        {                                                       \
          debug_message_prefix ();                              \
-         fprintf (debug, Fmt, Arg1, Arg2);                     \
+         xfprintf (debug, Fmt, Arg1, Arg2);                    \
          putc ('\n', debug);                                   \
        }                                                       \
     }                                                          \
@@ -422,6 +423,7 @@
 void expand_user_macro (struct obstack *, symbol *, int, token_data **);
 void m4_placeholder (struct obstack *, int, token_data **);
 void init_pattern_buffer (struct re_pattern_buffer *, struct re_registers *);
+const char *ntoa (int32_t, int);
 
 const builtin *find_builtin_by_addr (builtin_func *);
 const builtin *find_builtin_by_name (const char *);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]