Sign in
fuchsia
/
third_party
/
mesa
/
main
/
.
/
src
/
compiler
/
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
)