Changeset 429 for trunk/src/gmake/misc.c
- Timestamp:
- Mar 26, 2006, 8:07:04 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gmake/misc.c
r281 r429 22 22 #include "dep.h" 23 23 #include "debug.h" 24 25 #ifdef __EMX__ /* saves 5-10ms on libc */ 26 # define bcopy(src, dst, size) __builtin_memcpy((dst), (src), (size)) 27 #endif 24 28 25 29 /* Variadic functions. We go through contortions to allow proper function … … 420 424 421 425 426 #ifndef KMK /* This is really a reimplemntation of memchr. */ 422 427 /* Limited INDEX: 423 428 Search through the string STRING, which ends at LIMIT, for the character C. … … 435 440 return 0; 436 441 } 442 #endif 437 443 438 444
Note:
See TracChangeset
for help on using the changeset viewer.