26.10.2018, 08:52
Quote:
Open y_utils.inc and remove the definition of isnull, already had that, and that's the way I solved it. It's usually because you have two or more includes redefining the 'isnull' macro.
|
Код:
#if !defined isnull #define isnull(%1) ((!(%1[0])) || (((%1[0]) == '\1') && (!(%1[1])))) #endif
Or even simpler, get rid of your isnull definition completely.