]> git.sur5r.net Git - cc65/blobdiff - include/ctype.h
goto.c warning fix for implicit truncation
[cc65] / include / ctype.h
index b440bfb70f6fbcc72f2aae3fe86fb8e4949b4c73..103f6cc22bf19b73996a604ba56d337978ecde03 100644 (file)
@@ -84,14 +84,14 @@ unsigned char __fastcall__ toascii (unsigned char c);
 
 
 
-/* When inlining-of-known-functions is enabled, overload most of the above
+/* When --eagerly-inline-funcs is enabled, overload most of the above
 ** functions by macroes. The function prototypes are available again after
 ** #undef'ing the macroes.
 ** Please note that the following macroes do NOT handle EOF correctly, as
 ** stated in the manual. If you need correct behaviour for EOF, don't
-** use -Os, or #undefine the following macroes.
+** use --eagerly-inline-funcs, or #undefine the following macroes.
 */
-#ifdef __OPT_s__
+#ifdef __EAGERLY_INLINE_FUNCS__
 
 #define isalnum(c)  (__AX__ = (c),                      \
                     __asm__ ("tay"),                    \