summaryrefslogtreecommitdiff
path: root/include/stdio.h
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2016-12-20 20:56:32 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2016-12-21 18:50:24 +0100
commit0bd6bfb2b643ea2b4b1440dfd917ba752f0c0d15 (patch)
tree52ad6d0e988b933f55c76426bb17bcd3a93eee17 /include/stdio.h
parent013f366f501c928315cc2893f0f2348c8956d09e (diff)
remove obstack support
Remove __UCLIBC_HAS_OBSTACK__ as it isn't very uptodate and maintained part. It shouldn't be required for any software and mostly shipped with stuff which use it. (f.e. binutils-gdb)
Diffstat (limited to 'include/stdio.h')
-rw-r--r--include/stdio.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/include/stdio.h b/include/stdio.h
index 9aae5abf4..0915da909 100644
--- a/include/stdio.h
+++ b/include/stdio.h
@@ -860,22 +860,6 @@ extern char *ctermid (char *__s) __THROW;
extern char *cuserid (char *__s);
#endif /* Use X/Open, but not issue 6. */
-
-#if defined __USE_GNU && defined __UCLIBC_HAS_OBSTACK__
-struct obstack; /* See <obstack.h>. */
-
-/* Write formatted output to an obstack. */
-extern int obstack_printf (struct obstack *__restrict __obstack,
- const char *__restrict __format, ...)
- __THROWNL __attribute__ ((__format__ (__printf__, 2, 3)));
-extern int obstack_vprintf (struct obstack *__restrict __obstack,
- const char *__restrict __format,
- __gnuc_va_list __args)
- __THROWNL __attribute__ ((__format__ (__printf__, 2, 0)));
-libc_hidden_proto(obstack_vprintf)
-#endif /* USE_GNU && UCLIBC_HAS_OBSTACK. */
-
-
#if defined __USE_POSIX || defined __USE_MISC
/* These are defined in POSIX.1:1996. */