2007-10-17 16:23:01 +00:00
|
|
|
#ifndef _VA_NARG_H
|
|
|
|
#define _VA_NARG_H
|
|
|
|
|
2008-01-20 01:06:50 +00:00
|
|
|
/* Idea from Stefan Reuther, fe5vsq.17c.1@stefan.msgid.phost.de */
|
|
|
|
#define PP_NARG(...) (sizeof((_Bool[]){__VA_ARGS__})/sizeof(_Bool))
|
2007-12-15 19:45:48 +00:00
|
|
|
|
2007-10-17 16:23:01 +00:00
|
|
|
#endif
|