summaryrefslogtreecommitdiff
path: root/binutils/bucomm.h
diff options
context:
space:
mode:
Diffstat (limited to 'binutils/bucomm.h')
-rw-r--r--binutils/bucomm.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/binutils/bucomm.h b/binutils/bucomm.h
index 2c662c8e0a..9f914adeb5 100644
--- a/binutils/bucomm.h
+++ b/binutils/bucomm.h
@@ -90,6 +90,18 @@ extern char *getenv ();
extern char **environ;
#endif
+#if !HAVE_DECL_FPRINTF
+extern int fprintf (FILE *, const char *, ...);
+#endif
+
+#if !HAVE_DECL_SNPRINTF
+extern int snprintf(char *, size_t, const char *, ...);
+#endif
+
+#if !HAVE_DECL_VSNPRINTF
+extern int vsnprintf(char *, size_t, const char *, va_list);
+#endif
+
#ifndef O_RDONLY
#define O_RDONLY 0
#endif