Comment out non ANSI C standard comliant code. Fixes win32 build.

This commit is contained in:
Edin Kadribasic 2003-01-06 01:26:14 +00:00
parent 59b37a5ce4
commit 6113d95433

View File

@ -168,8 +168,11 @@ ZEND_GET_MODULE(mcrypt)
if (argc < (a) || argc > (b)) { \
WRONG_PARAM_COUNT; \
}
#warning Invalidate resource if the param count is wrong, or other problems
#warning occurred during functions.
/*
* #warning is not ANSI C
* #warning Invalidate resource if the param count is wrong, or other problems
* #warning occurred during functions.
*/
#define MCRYPT_GET_CRYPT_ARGS \
switch (argc) { \