~ubuntu-branches/ubuntu/lucid/vde2/lucid-proposed

« back to all changes in this revision

Viewing changes to include/open_memstream.h

  • Committer: Bazaar Package Importer
  • Author(s): Filippo Giunchedi
  • Date: 2008-06-17 15:36:32 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20080617153632-5318x7iv0zwmu3zu
Tags: 2.2.1-1
* New upstream release
  - fix vlan commands on amd64 (Closes: #484295)
  - fix mac addresses switch between ports (Closes: #469098)
* Suggest: qemu and kvm as requested in #461514
* Expand and spell-check README.Debian, add manual method example
  (Closes: #466363)
* Do not assume MAKEDEV presence in postinst
* Remove /usr/bin/daemon usage from ifupdown scripts (and Recommends)
* Add manpage for vde_tunctl
* Upgrade to S-V 3.8.0 (add Homepage field) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef OPEN_MEMSTREAM_H__
 
2
#define OPEN_MEMSTREAM_H__
 
3
#ifndef HAVE_OPEN_MEMSTREAM
 
4
 
 
5
#include <stdio.h>
 
6
 
 
7
FILE *open_memstream(char **ptr, size_t *sizeloc);
 
8
 
 
9
#else
 
10
 
 
11
#define _GNU_SOURCE
 
12
#include <stdio.h>
 
13
 
 
14
#endif
 
15
#endif