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