From: bernie Date: Sun, 27 Nov 2005 23:33:05 +0000 (+0000) Subject: Drop avr-libc hack for missing stdint.h. X-Git-Tag: 1.0.0~782 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=bd753119c1f64f7531a6fe3b40e367665614840c;p=bertos.git Drop avr-libc hack for missing stdint.h. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@459 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/cfg/compiler.h b/cfg/compiler.h index ba645190..ddb270e1 100755 --- a/cfg/compiler.h +++ b/cfg/compiler.h @@ -14,6 +14,9 @@ /*#* *#* $Log$ + *#* Revision 1.7 2005/11/27 23:33:05 bernie + *#* Drop avr-libc hack for missing stdint.h. + *#* *#* Revision 1.6 2005/07/19 07:27:31 bernie *#* Don't use CPU_REG_BITS from cpu.h to avoid circular header dependendy. *#* @@ -324,11 +327,8 @@ typedef unsigned long long uint64_t; #endif /* \} */ -#elif defined(__GNUC__) && CPU_AVR - /* avr-libc is weird... (Fixed in avr-libc-1.2, hack to be removed soon) */ - #include #else - /* This is the correct location. */ + /* This is the standard location. */ #include #endif