20 lines
258 B
C
Executable File
20 lines
258 B
C
Executable File
#ifndef RC_BUILTIN_H_INCLUDED
|
|
#define RC_BUILTIN_H_INCLUDED
|
|
#include "identifier.h"
|
|
|
|
void init_embedded_functions()
|
|
{
|
|
}
|
|
|
|
|
|
void init_embedded_types()
|
|
{
|
|
create_type("empty");
|
|
}
|
|
|
|
void init_embedded_variables()
|
|
{
|
|
}
|
|
|
|
#endif // RC_BUILTIN_H_INCLUDED
|