X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=include%2Fctype.h;h=103f6cc22bf19b73996a604ba56d337978ecde03;hb=2cd4b5109a59c3743b38369359c389cc1b9edab4;hp=b440bfb70f6fbcc72f2aae3fe86fb8e4949b4c73;hpb=a8d3b83c43e79702a41b0049d65ea51e62dacf09;p=cc65 diff --git a/include/ctype.h b/include/ctype.h index b440bfb70..103f6cc22 100644 --- a/include/ctype.h +++ b/include/ctype.h @@ -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"), \