blob: 47c58f5ed2172335191923ab866af34d8802b124 (
plain) (
blame)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
COMMON_FLOAT = \
_atof.c \
_schar2fs.c \
_sint2fs.c \
_slong2fs.c \
_uchar2fs.c \
_uint2fs.c \
_ulong2fs.c \
_fs2schar.c \
_fs2sint.c \
_fs2slong.c \
_fs2uchar.c \
_fs2uint.c \
_fs2ulong.c \
_fsadd.c \
_fsdiv.c \
_fsmul.c \
_fssub.c \
_fseq.c \
_fslt.c \
_fsneq.c \
fabsf.c \
frexpf.c \
ldexpf.c \
expf.c \
powf.c \
sincosf.c \
sinf.c \
cosf.c \
logf.c \
log10f.c \
sqrtf.c \
tancotf.c \
tanf.c \
cotf.c \
asincosf.c \
asinf.c \
acosf.c \
atanf.c \
atan2f.c \
sincoshf.c \
sinhf.c \
coshf.c \
tanhf.c \
floorf.c \
ceilf.c \
modff.c \
errno.c \
isinf.c \
isnan.c
COMMON_LONG = \
_divslong.c \
_modslong.c \
_modulong.c
COMMON_SDCC = \
isalnum.c \
isalpha.c \
isblank.c \
iscntrl.c \
isdigit.c \
isgraph.c \
islower.c \
isprint.c \
ispunct.c \
isspace.c \
isupper.c \
isxdigit.c \
tolower.c \
toupper.c \
atoi.c \
atol.c \
atoll.c \
strtol.c \
strtoul.c \
bsearch.c \
qsort.c \
abs.c \
labs.c \
rand.c \
_strcat.c \
_strchr.c \
_strcspn.c \
strdup.c \
strndup.c \
_strncat.c \
_strncmp.c \
strxfrm.c \
_strncpy.c \
_strpbrk.c \
_strrchr.c \
_strspn.c \
_strstr.c \
_strtok.c \
memccpy.c \
_memchr.c \
_memcmp.c \
_memset.c \
aligned_alloc.c \
calloc.c \
malloc.c \
realloc.c \
free.c \
mblen.c \
mbtowc.c \
wctomb.c \
mbstowcs.c \
wcstombs.c \
mbrtoc16.c \
c16rtomb.c \
mbrtoc32.c \
c32rtomb.c \
mbstoc16s.c \
c16stombs.c \
wcscmp.c \
wcslen.c \
btowc.c \
wctob.c \
mbsinit.c \
mbrlen.c \
mbrtowc.c \
wcrtomb.c \
printf_large.c \
puts.c \
gets.c \
__assert.c \
time.c
MODELS = small medium large huge
|