aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/stdio/vasprintf.c
diff options
context:
space:
mode:
authorYaakov Selkowitz <yselkowi@redhat.com>2017-12-03 23:54:48 -0600
committerYaakov Selkowitz <yselkowi@redhat.com>2018-01-17 11:47:29 -0600
commit70ee6b17df9b055a05cdcc4d3fe1813d7b57e2d8 (patch)
treedca0744ad66ae0e81c8535303f58fca114b80f63 /newlib/libc/stdio/vasprintf.c
parent77f16db546d9c214f639d1ea84c58d99f9e4d282 (diff)
downloadnewlib-70ee6b17df9b055a05cdcc4d3fe1813d7b57e2d8.zip
newlib-70ee6b17df9b055a05cdcc4d3fe1813d7b57e2d8.tar.gz
newlib-70ee6b17df9b055a05cdcc4d3fe1813d7b57e2d8.tar.bz2
ansification: remove _EXFUN, _EXFUN_NOTHROW
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
Diffstat (limited to 'newlib/libc/stdio/vasprintf.c')
-rw-r--r--newlib/libc/stdio/vasprintf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/newlib/libc/stdio/vasprintf.c b/newlib/libc/stdio/vasprintf.c
index 4acbc04..8fe6354 100644
--- a/newlib/libc/stdio/vasprintf.c
+++ b/newlib/libc/stdio/vasprintf.c
@@ -40,8 +40,8 @@ vasprintf (char **strp,
#ifdef _NANO_FORMATTED_IO
int
-_EXFUN(vasiprintf, (char **, const char *, __VALIST)
- _ATTRIBUTE ((__alias__("vasprintf"))));
+vasiprintf (char **, const char *, __VALIST)
+ _ATTRIBUTE ((__alias__("vasprintf")));
#endif
#endif /* !_REENT_ONLY */
@@ -70,6 +70,6 @@ _vasprintf_r (struct _reent *ptr,
#ifdef _NANO_FORMATTED_IO
int
-_EXFUN(_vasiprintf_r, (struct _reent *, char **, const char *, __VALIST)
- _ATTRIBUTE ((__alias__("_vasprintf_r"))));
+_vasiprintf_r (struct _reent *, char **, const char *, __VALIST)
+ _ATTRIBUTE ((__alias__("_vasprintf_r")));
#endif