mirror of /home/gitosis/repositories/libowfat.git
Mirror of :pserver:cvs@cvs.fefe.de:/cvs libowfat
https://www.fefe.de/libowfat/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
255 B
8 lines
255 B
/* this header file comes from libowfat, http://www.fefe.de/libowfat/ */
|
|
#ifndef _VA_NARG_H
|
|
#define _VA_NARG_H
|
|
|
|
/* Idea from Stefan Reuther, fe5vsq.17c.1@stefan.msgid.phost.de */
|
|
#define PP_NARG(...) (sizeof((_Bool[]){__VA_ARGS__})/sizeof(_Bool))
|
|
|
|
#endif
|