15 lines
259 B
C
15 lines
259 B
C
|
|
#include <debug.h>
|
|
|
|
#include "../inheritance.h"
|
|
|
|
#include "write.h"
|
|
#include "free.h"
|
|
|
|
#include "inheritance.h"
|
|
|
|
struct wcostream_inheritance ostream_wcostream_inheritance = {
|
|
.write = ostream_wcostream_write,
|
|
|
|
.free = free_ostream_wcostream,
|
|
};
|