~ubuntu-branches/ubuntu/lucid/mpop/lucid

« back to all changes in this revision

Viewing changes to gnulib/asprintf.c

  • Committer: Bazaar Package Importer
  • Author(s): Julien Louis
  • Date: 2007-04-22 11:10:07 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20070422111007-zxauoipdhkj9lasp
Tags: 1.0.9-1
New upstream release which include a fix for for CVE2007-1558.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* Formatted output to strings.
2
 
   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
 
2
   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
3
3
 
4
4
   This program is free software; you can redistribute it and/or modify
5
5
   it under the terms of the GNU General Public License as published by
18
18
#include <config.h>
19
19
 
20
20
/* Specification.  */
21
 
#include "vasprintf.h"
 
21
#ifdef IN_LIBASPRINTF
 
22
# include "vasprintf.h"
 
23
#else
 
24
# include <stdio.h>
 
25
#endif
22
26
 
23
27
#include <stdarg.h>
24
28