14 lines
213 B
C
14 lines
213 B
C
|
|
#include <debug.h>
|
|
|
|
#include "write.h"
|
|
#include "free.h"
|
|
|
|
#include "inheritance.h"
|
|
|
|
struct ostream_inheritance file_ostream_inheritance = {
|
|
.write = file_ostream_write,
|
|
|
|
.free = free_file_ostream
|
|
};
|
|
|