On z/OS with compiling option -DDEBUGING . Error compiling ERROR CCN3277 ./inline.h:20 Syntax error: possible missing ')' or ','? ERROR CCN3023 ./inline.h:20 Expecting function or pointer to function. ERROR CCN3275 ./inline.h:20 Unexpected text ')' encountered. ERROR CCN3277 ./inline.h:20 Syntax error: possible missing ';' or ','?
Error in #define _CANNOT "CANNOT" . This patch removes the error. ------------------------------------------------------------------------ Yaroslav Kuzmin Developer C/C++ ,z/OS , Linux 3 Zhukovskiy Street * Miass, Chelyabinsk region 456318 * Russia Tel: +7.922.2.38.33.38 Email: [email protected] Web: www.rocketsoftware.com ================================ Rocket Software, Inc. and subsidiaries ? 77 Fourth Avenue, Waltham MA 02451 ? +1 800.966.3270 ? +1 781.577.4321 Unsubscribe From Commercial Email - [email protected] Manage Your Subscription Preferences - http://info.rocketsoftware.com/GlobalSubscriptionManagementEmailFooter_SubscriptionCenter.html Privacy Policy - http://www.rocketsoftware.com/company/legal/privacy-policy ================================
diff --git a/nostdio.h b/nostdio.h index ef8d652..c815fd8 100644 --- a/nostdio.h +++ b/nostdio.h @@ -25,6 +25,8 @@ struct _FILE; #define FILE struct _FILE #endif +#ifndef EBCDIC + #define _CANNOT "CANNOT" #undef clearerr @@ -125,6 +127,8 @@ struct _FILE; #define pclose(f) _CANNOT _pclose_ #endif +#endif /*not define EBCDIC */ + /* * Local variables: * c-indentation-style: bsd
