23 lines
274 B
C
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;
|
|
}
|
|
|