Changeset 3140 for trunk/src/kmk/kmk_cc_exec.c
- Timestamp:
- Mar 14, 2018, 10:28:10 PM (7 years ago)
- Location:
- trunk/src/kmk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk
-
Property svn:mergeinfo
set to
/vendor/gnumake/current merged eligible
-
Property svn:mergeinfo
set to
-
trunk/src/kmk/kmk_cc_exec.c
r2817 r3140 29 29 * Header Files * 30 30 *********************************************************************************************************************************/ 31 #include "make .h"31 #include "makeint.h" 32 32 33 33 #include "dep.h" … … 2114 2114 if ( cchName >= MIN_FUNCTION_LENGTH 2115 2115 && cchName <= MAX_FUNCTION_LENGTH 2116 && ( isblank(ch) || ch == chClose || cchName == cchStr)2116 && (ISBLANK(ch) || ch == chClose || cchName == cchStr) 2117 2117 && (pfnFunction = lookup_function_for_compiler(pchStr, cchName, &cMinArgs, &cMaxArgs, 2118 2118 &fExpandArgs, &pszFunction)) != NULL) … … 2128 2128 /* Skip leading spaces before the first arg. */ 2129 2129 cchName++; 2130 while (cchName < cchStr && isblank((unsigned char)pchStr[cchName]))2130 while (cchName < cchStr && ISBLANK(pchStr[cchName])) 2131 2131 cchName++; 2132 2132
Note:
See TracChangeset
for help on using the changeset viewer.