diff options
Diffstat (limited to 'stdio-common/asprintf.c')
-rw-r--r-- | stdio-common/asprintf.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/stdio-common/asprintf.c b/stdio-common/asprintf.c index 3b211d62b8..2c466d28d5 100644 --- a/stdio-common/asprintf.c +++ b/stdio-common/asprintf.c @@ -1,4 +1,5 @@ -/* Copyright (C) 1991, 1995, 1997, 1998, 2002 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1995, 1997, 1998, 2002, 2004 + Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -19,10 +20,8 @@ #include <stdarg.h> #include <stdio.h> -#ifdef USE_IN_LIBIO -# include <libio/libioP.h> -# define vasprintf(s, f, a) _IO_vasprintf (s, f, a) -#endif +#include <libio/libioP.h> +#define vasprintf(s, f, a) _IO_vasprintf (s, f, a) #undef __asprintf /* Write formatted output from FORMAT to a string which is |