This library contains code that extends and simplifies different operations
for C language based programs.
Revisión | f99c8c2ce5be3291d8ba3b035494db5b309d99ec (tree) |
---|---|
Tiempo | 2022-10-05 13:01:55 |
Autor | Sergey Gusarov <laborer2008@gmai...> |
Commiter | Sergey Gusarov |
test_console: Fixed link error with sdcc
@@ -23,6 +23,13 @@ | ||
23 | 23 | { |
24 | 24 | } |
25 | 25 | |
26 | +#ifdef CT_COMPL_SDCC | |
27 | +int getchar(void) | |
28 | +{ | |
29 | + return 0; | |
30 | +} | |
31 | +#endif | |
32 | + | |
26 | 33 | void testCompile(void) |
27 | 34 | { |
28 | 35 | CT_USING_CT_NAMESPACE |