diff options
author | hpa <hpa> | 2004-12-21 00:27:17 +0000 |
---|---|---|
committer | hpa <hpa> | 2004-12-21 00:27:17 +0000 |
commit | 02b5962d945dcc7a81ba6da1dfb7590f4030244c (patch) | |
tree | eaeb3963d071b93fa3b51b4f3402e58261ebb4b7 /com32/include | |
parent | fc9d1511c2a841c529fe2e6855aaa4e34fef98f5 (diff) | |
download | syslinux-02b5962d945dcc7a81ba6da1dfb7590f4030244c.tar.gz |
Add code to edit the command line in the simple menu
Diffstat (limited to 'com32/include')
-rw-r--r-- | com32/include/stdio.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/com32/include/stdio.h b/com32/include/stdio.h index 0ebe922d..ada42fbe 100644 --- a/com32/include/stdio.h +++ b/com32/include/stdio.h @@ -96,6 +96,9 @@ __extern int vsprintf(char *, const char *, va_list); __extern int snprintf(char *, size_t n, const char *, ...); __extern int vsnprintf(char *, size_t n, const char *, va_list); +__extern int asprintf(char **, const char *, ...); +__extern int vasprintf(char **, const char *, va_list); + /* No buffering, so no flushing needed */ extern __inline__ int fflush(FILE *__f) |