lambda-calc-1/ostream/file/inheritance.c
2025-01-13 20:36:07 -06:00

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
};