Files
third_party_mesa3d/glcpp/tests/023-define-extra-whitespace.c
2010-06-21 11:22:11 -07:00

9 lines
189 B
C

#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 )