rosenberg: handle bit fields better
[smatch.git] / builtin.h
blobd0d3fd2ccf87f06046a6b2a626a9f487f7b4ab1e
1 #ifndef _BUILTIN_H_
2 #define _BUILTIN_H_
4 #include "symbol.h"
6 struct builtin_fn {
7 const char *name;
8 struct symbol *ret_type;
9 unsigned int variadic:1;
10 struct symbol *args[6];
11 struct symbol *_args_null_tail;
12 struct symbol_op *op;
15 #endif