]> git.sur5r.net Git - cc65/blobdiff - include/ctype.h
Fixed LinuxDoc Tools issues in some verbatim blocks in the Atari document.
[cc65] / include / ctype.h
index 4c7f976d2a7d6e47790eeda5117ff9d2e718c6ec..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
- * 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.
- */
-#ifdef __OPT_s__
+/* 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 --eagerly-inline-funcs, or #undefine the following macroes.
+*/
+#ifdef __EAGERLY_INLINE_FUNCS__
 
 #define isalnum(c)  (__AX__ = (c),                      \
                     __asm__ ("tay"),                    \