Remove dead code.

__APPLE__ => HAVE_FUNOPEN.

Change-Id: I191cccd9b75020ffbb3281283ce1f1b7abc15d22
This commit is contained in:
Elliott Hughes 2014-11-08 11:32:07 -08:00
parent 2655256570
commit 9a092dd373

View file

@ -59,8 +59,6 @@
# define DBUG(x) ((void)0)
#endif
#ifdef HAVE_FUNOPEN
/*
* Definition of a seekable, write-only memory stream.
*/
@ -251,12 +249,6 @@ FILE* open_memstream(char** bufp, size_t* sizep)
return fp;
}
#else /*not HAVE_FUNOPEN*/
FILE* open_memstream(char** bufp, size_t* sizep)
{
abort();
}
#endif /*HAVE_FUNOPEN*/