Subversion Repositories freemyipod

Rev

Rev 98 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 98 Rev 111
Line 36... Line 36...
36
#define INITBSS_ATTR __attribute__((section(".initbss")))
36
#define INITBSS_ATTR __attribute__((section(".initbss")))
37
#define INITSTACK_ATTR __attribute__((section(".initstack")))
37
#define INITSTACK_ATTR __attribute__((section(".initstack")))
38
#define STACK_ATTR __attribute__((section(".stack")))
38
#define STACK_ATTR __attribute__((section(".stack")))
39
 
39
 
40
#ifndef ASM_FILE
40
#ifndef ASM_FILE
-
 
41
#include <stdarg.h>
41
#include "errno.h"
42
#include "errno.h"
42
#include "inttypes.h"
43
#include "inttypes.h"
43
#include "math.h"
44
#include "math.h"
44
#include "stdint.h"
45
#include "stdint.h"
45
#include "stdlib.h"
46
#include "stdlib.h"
Line 48... Line 49...
48
typedef int bool;
49
typedef int bool;
49
#define true 1
50
#define true 1
50
#define false 0
51
#define false 0
51
#endif
52
#endif
52
 
53
 
-
 
54
#ifndef IN_APPLICATION_CODE
53
#include "build/version.h"
55
#include "build/version.h"
54
#include "configmagic.h"
56
#include "configmagic.h"
-
 
57
#endif
55
#include "debug.h"
58
#include "debug.h"
56
 
59
 
57
 
60
 
58
#endif
61
#endif