1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
  
     | 
    
      /*
 * This file was produced by running metaconfig and is intended to be included
 * after config.h and after all the other needed includes have been dealt with.
 *
 * This file may be empty, and should not be edited. Rerun metaconfig instead.
 * If you wish to get rid of this magic, remove this file and rerun metaconfig
 * without the -M option.
 *
 *  $Id: confmagic.h 1 2006-08-24 13:24:12Z rmanfredi $
 */
#ifndef _confmagic_h_
#define _confmagic_h_
#ifndef HAS_BCOPY
#ifndef bcopy
#define bcopy(s,d,l) memcpy((d),(s),(l))
#endif
#endif
#ifndef HAS_INDEX
#ifndef index
#define index strchr
#endif
#endif
#ifndef HAS_INDEX
#ifndef rindex
#define rindex strrchr
#endif
#endif
#ifndef HAS_VFORK
#define vfork fork
#endif
#endif
 
     |