17 lines
232 B
C
17 lines
232 B
C
|
|
#include <stddef.h>
|
|
|
|
#include <debug.h>
|
|
|
|
#include "struct.h"
|
|
#include "prettyprint_errors.h"
|
|
|
|
struct stringtree* variable_expression_prettyprint_errors(
|
|
struct expression* super)
|
|
{
|
|
ENTER;
|
|
|
|
EXIT;
|
|
return NULL;
|
|
}
|
|
|