Home | History | Annotate | Line # | Download | only in include
cdefs.h revision 1.2.4.1
      1 /*	$NetBSD: cdefs.h,v 1.2.4.1 2002/01/10 19:48:39 thorpej Exp $	*/
      2 
      3 #ifndef _MACHINE_CDEFS_H_
      4 #define _MACHINE_CDEFS_H_
      5 
      6 /*
      7  * The old NetBSD/sh3 ELF toolchain used underscores.  The new
      8  * NetBSD/sh3 ELF toolchain does not.  The C pre-processor
      9  * defines __NO_LEADING_UNDERSCORES__ for the new ELF toolchain.
     10  */
     11 
     12 #if defined(__ELF__) && !defined(__NO_LEADING_UNDERSCORES__)
     13 #define __LEADING_UNDERSCORE
     14 #endif
     15 
     16 #endif /* !_MACHINE_CDEFS_H_ */
     17