Changeset 520 for trunk/src/gmake/make.h
- Timestamp:
- Sep 16, 2006, 6:56:25 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gmake/make.h
r507 r520 41 41 42 42 /* Use prototypes if available. */ 43 #if defined (__cplusplus) || defined (__STDC__) || defined WINDOWS32 43 #if defined (__cplusplus) || defined (__STDC__) || defined WINDOWS32 /* bird: protos on windows */ 44 44 # undef PARAMS 45 45 # define PARAMS(protos) protos … … 425 425 extern char *end_of_token PARAMS ((const char *)); 426 426 extern void collapse_continuations PARAMS ((char *)); 427 #if def KMK427 #if 1 /* memchr is usually compiler intrinsic, thus faster. */ 428 428 #define lindex(s, limit, c) ((char *)memchr((s), (c), (limit) - (s))) 429 429 #else … … 615 615 while (((_v)=_c)==0 && errno==EINTR); }while(0) 616 616 617 #ifdef __EMX__ /* saves 40-100ms on libc. */617 #ifdef __EMX__ /* bird: saves 40-100ms on libc. */ 618 618 #undef strchr 619 619 #define strchr(s, c) \ … … 700 700 } 701 701 702 #endif 702 #endif /* __EMX__ (bird) */
Note:
See TracChangeset
for help on using the changeset viewer.