mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-22 17:50:12 +01:00
8 lines
189 B
C
8 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 )
|