lambda-calculus/ostream/file/free.c
2025-01-13 20:36:07 -06:00

23 lines
274 B
C

#include <assert.h>
#include <debug.h>
#include "struct.h"
#include "free.h"
void free_file_ostream(
struct ostream* super)
{
ENTER;
struct file_ostream* const this = (void*) super;
if (this->fd > 2)
{
TODO;
}
EXIT;
}