OpenGrok
Cross Reference: 085-incorrect-argument-count.c
xref
: /
external
/
mesa3d
/
src
/
glsl
/
glcpp
/
tests
/
085-incorrect-argument-count.c
Home
|
History
|
Annotate
|
Download
|
only in
tests
1
#
define
MULT
(x,y) ((x)*(y))
2
MULT
()
3
MULT
(
1
)
4
MULT
(
1,2
,
3
)
5
6