Change all variadic macros to C99 style

This commit is contained in:
Gregory Nutt
2014-05-22 09:01:51 -06:00
parent c53bad01cf
commit 2b0f1ed109
10 changed files with 35 additions and 35 deletions

View File

@@ -63,7 +63,7 @@
#define nsh_exit(v,s) (v)->exit(v,s)
#ifdef CONFIG_CPP_HAVE_VARARGS
# define nsh_output(v, fmt...) (v)->output(v, ##fmt)
# define nsh_output(v, ...) (v)->output(v, ##__VA_ARGS__)
#else
# define nsh_output vtbl->output
#endif