Ignore:
Timestamp:
Mar 14, 2018, 10:28:10 PM (7 years ago)
Author:
bird
Message:

kmk: Merged in changes from GNU make 4.2.1 (2e55f5e4abdc0e38c1d64be703b446695e70b3b6 / https://git.savannah.gnu.org/git/make.git).

Location:
trunk/src/kmk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk

  • trunk/src/kmk/kmk_cc_exec.c

    r2817 r3140  
    2929*   Header Files                                                                                                                 *
    3030*********************************************************************************************************************************/
    31 #include "make.h"
     31#include "makeint.h"
    3232
    3333#include "dep.h"
     
    21142114                        if (   cchName >= MIN_FUNCTION_LENGTH
    21152115                            && cchName <= MAX_FUNCTION_LENGTH
    2116                             && (isblank(ch) || ch == chClose || cchName == cchStr)
     2116                            && (ISBLANK(ch) || ch == chClose || cchName == cchStr)
    21172117                            && (pfnFunction = lookup_function_for_compiler(pchStr, cchName, &cMinArgs, &cMaxArgs,
    21182118                                                                           &fExpandArgs, &pszFunction)) != NULL)
     
    21282128                                /* Skip leading spaces before the first arg. */
    21292129                                cchName++;
    2130                                 while (cchName < cchStr && isblank((unsigned char)pchStr[cchName]))
     2130                                while (cchName < cchStr && ISBLANK(pchStr[cchName]))
    21312131                                    cchName++;
    21322132
Note: See TracChangeset for help on using the changeset viewer.