Changeset 520 for trunk/src/gmake/misc.c
- Timestamp:
- Sep 16, 2006, 6:56:25 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gmake/misc.c
r503 r520 21 21 #include "debug.h" 22 22 23 #ifdef __EMX__ /* saves 5-10ms on libc */23 #ifdef __EMX__ /* bird: saves 5-10ms on libc */ 24 24 # define bcopy(src, dst, size) __builtin_memcpy((dst), (src), (size)) 25 25 #endif … … 406 406 407 407 408 #ifndef KMK /* This is really a reimplemntation of memchr. */ 408 #if 0 /* This is really a reimplemntation of memchr, only slower. 409 It's been replaced by a macro in the header file. */ 409 410 /* Limited INDEX: 410 411 Search through the string STRING, which ends at LIMIT, for the character C.
Note:
See TracChangeset
for help on using the changeset viewer.