Changeset 520 for trunk/src/gmake/misc.c


Ignore:
Timestamp:
Sep 16, 2006, 6:56:25 AM (19 years ago)
Author:
bird
Message:

Cleaning up the modifications. Changes are now either configurable or marked, and dead stuff has been removed (dll shell).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gmake/misc.c

    r503 r520  
    2121#include "debug.h"
    2222
    23 #ifdef __EMX__  /* saves 5-10ms on libc */
     23#ifdef __EMX__  /* bird: saves 5-10ms on libc */
    2424# define bcopy(src, dst, size)   __builtin_memcpy((dst), (src), (size))
    2525#endif
     
    406406
    407407
    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. */
    409410/* Limited INDEX:
    410411   Search through the string STRING, which ends at LIMIT, for the character C.
Note: See TracChangeset for help on using the changeset viewer.