Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
mesa3d
/
29285882676388aacff123e8bdf025904abf8ea9
/
.
/
src
/
glsl
/
glcpp
/
tests
/
023-define-extra-whitespace.c
blob: 7ebfed6516c6f09f11fb94945a4aa4c969ef0381 [
file
] [
log
] [
blame
]
#define
noargs
()
1
# define onearg(foo) foo
# define twoargs( x , y ) x y
# define threeargs( a , b , c ) a b c
noargs
(
)
onearg
(
2
)
twoargs
(
3
,
4
)
threeargs
(
5
,
6
,
7
)