15 lines
181 B
C
15 lines
181 B
C
|
|
#include <debug.h>
|
|
|
|
#include "struct.h"
|
|
#include "inc.h"
|
|
|
|
struct ostream* inc_ostream(
|
|
struct ostream* this)
|
|
{
|
|
if (this)
|
|
this->refcount++;
|
|
|
|
return this;
|
|
}
|
|
|