Re: Little confused

2001-03-15 Thread Daniel C. Sobral
milunovic wrote: > > I'm reading kernel source,but I don't understand something like this -> > > example: > #define GG(x,y) \ > static void * const blabla_##x_blabla_##y = &y; > > As I see this should make something like this > > GG(foo,bar) should make > static void * const blabla_foo_blabl

Little confused

2001-03-15 Thread milunovic
-BEGIN PGP SIGNED MESSAGE- I'm reading kernel source,but I don't understand something like this -> example: #define GG(x,y) \ static void * const blabla_##x_blabla_##y = &y; As I see this should make something like this GG(foo,bar) should make static void * const blabla_foo_blabla_ba