blob: f82fd9b38532e5767709148def32d3e4e61595bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#ifndef _DOUTPUT_H_
#define _DOUTPUT_H_
#include <kconfig/lkc.h>
#include <macros.h>
void doutput_expr(struct expr *expr);
#endif /* _DOUTPUT_H_ */
|