diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-03-09 23:35:45 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-03-09 23:35:45 +0000 |
commit | 361c600c69679b8df5d8edafec843afa85c90e6c (patch) | |
tree | 68d09fd8e93e04ef4782335eef187df1715f8d96 | |
parent | 9d2dda92c49a3e1ce59f174ce4d62b670fb60295 (diff) | |
download | xine-lib-361c600c69679b8df5d8edafec843afa85c90e6c.tar.gz xine-lib-361c600c69679b8df5d8edafec843afa85c90e6c.tar.bz2 |
Add stdio.h header to include, for Solaris compatibility. Patch by Albert Lee.
CVS patchset: 8646
CVS date: 2007/03/09 23:35:45
-rw-r--r-- | lib/asprintf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/asprintf.c b/lib/asprintf.c index de6c5f9ed..6c9d90664 100644 --- a/lib/asprintf.c +++ b/lib/asprintf.c @@ -22,6 +22,7 @@ #include "config.h" #include <string.h> #include <stdlib.h> +#include <stdio.h> #include <stdarg.h> int xine_private_vasprintf (char **buffer, const char *format, va_list ap) |