Fix C/should_fail/init2.c: if there is no outer_type (error case), just go on.
[cparser] / driver / fe_common.h
1 #ifndef __FE_COMMON_H__
2 #define __FE_COMMON_H__
3
4 #include <stdio.h>
5 #include <stdlib.h>
6
7 #define TRUE 1
8 #define FALSE 0
9
10 /* some needed types form teh EDG frontend */
11 typedef unsigned char a_byte;
12 typedef struct an_il_type *a_type_ptr;
13
14 #endif /* __FE_COMMON_H__ */