AF_IPN is no longer protocol #34 (assigned to AF_ISDN).
[vde.git] / vde-2 / include / open_memstream.h
blob2179e1daa494da9707248af0eaa93e6f96c46a99
1 #ifndef OPEN_MEMSTREAM_H__
2 #define OPEN_MEMSTREAM_H__
3 #ifndef HAVE_OPEN_MEMSTREAM
5 #include <stdio.h>
7 FILE *open_memstream(char **ptr, size_t *sizeloc);
9 #else
11 #define _GNU_SOURCE
12 #include <stdio.h>
14 #endif
15 #endif