ostream-private.h revision 9a48c2243fe98ca8393be7908f84d20c634bcdf9
#ifndef OSTREAM_PRIVATE_H
#define OSTREAM_PRIVATE_H
#include "ostream.h"
#include "iostream-private.h"
struct ostream_private {
/* inheritance: */
struct iostream_private iostream;
/* methods: */
void *context);
const struct const_iovec *iov,
unsigned int iov_count);
/* data: */
int fd;
void *context;
unsigned int corked:1;
unsigned int closing:1;
unsigned int last_errors_not_checked:1;
unsigned int error_handling_disabled:1;
};
struct ostream *
ATTR_NULL(2);
#endif