repo.or.cz
/
smatch.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
check_list: add a comment about ordering
[smatch.git]
/
builtin.h
blob
d0d3fd2ccf87f06046a6b2a626a9f487f7b4ab1e
1
#ifndef _BUILTIN_H_
2
#define _BUILTIN_H_
3
4
#include
"symbol.h"
5
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
;
13
};
14
15
#endif