summaryrefslogtreecommitdiff
path: root/src/glsl/glcpp/tests/023-define-extra-whitespace.c
blob: 7ebfed6516c6f09f11fb94945a4aa4c969ef0381 (plain)
1
2
3
4
5
6
7
8
#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 )