summaryrefslogtreecommitdiffstats
path: root/src/include/stdio.h
diff options
context:
space:
mode:
authorMichael Brown2007-06-08 17:33:24 +0200
committerMichael Brown2007-06-08 17:33:24 +0200
commit6f0a6c09db3b714849e3f84dabd3ad9ee9041607 (patch)
tree67b0a5d66d2ea9a0508c36ca0a4eaaffa3045725 /src/include/stdio.h
parentShould call ftp_done() if constructor fails. (diff)
parentConflicts with native asn1.c (diff)
downloadipxe-6f0a6c09db3b714849e3f84dabd3ad9ee9041607.tar.gz
ipxe-6f0a6c09db3b714849e3f84dabd3ad9ee9041607.tar.xz
ipxe-6f0a6c09db3b714849e3f84dabd3ad9ee9041607.zip
Merge branch 'master' into mcb-tcp-xfer
Diffstat (limited to 'src/include/stdio.h')
-rw-r--r--src/include/stdio.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/stdio.h b/src/include/stdio.h
index 169cfd9e3..82077e20f 100644
--- a/src/include/stdio.h
+++ b/src/include/stdio.h
@@ -10,10 +10,15 @@ printf ( const char *fmt, ... );
extern int __attribute__ (( format ( printf, 3, 4 ) ))
snprintf ( char *buf, size_t size, const char *fmt, ... );
+extern int __attribute__ (( format ( printf, 2, 3 ) ))
+asprintf ( char **strp, const char *fmt, ... );
+
extern int vprintf ( const char *fmt, va_list args );
extern int vsnprintf ( char *buf, size_t size, const char *fmt, va_list args );
+extern int vasprintf ( char **strp, const char *fmt, va_list args );
+
/**
* Write a formatted string to a buffer
*