Move deprecated macros and functions to dedicated header file

This commit is contained in:
furunkel
2015-06-23 10:35:02 +02:00
parent 1001be2e99
commit e90f0d51a3
2 changed files with 15 additions and 10 deletions
+10
View File
@@ -0,0 +1,10 @@
/* Deprecated macros and functions */
#define ARGS_REQ(n) MRB_ARGS_REQ(n)
#define ARGS_OPT(n) MRB_ARGS_OPT(n)
#define ARGS_REST() MRB_ARGS_REST()
#define ARGS_POST(n) MRB_ARGS_POST()
#define ARGS_KEY(n1,n2) MRB_ARGS_KEY(n1,n2)
#define ARGS_BLOCK() MRB_ARGS_BLOCK()
#define ARGS_ANY() MRB_ARGS_ANY()
#define ARGS_NONE() MRB_ARGS_NONE()