diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-03-09 09:16:12 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-03-09 09:16:12 -0500 |
commit | 970bbb473c81975d3c7366260c8228fd4fcc8c4d (patch) | |
tree | 518c5e7290ffe66e84ba1c8e7df0c42f849d0857 /alee-msp430.cpp | |
parent | dcd5e792b1d84afd1bea9780781674b6e6ad8dc3 (diff) |
linting; reduce msp430 binary size
Diffstat (limited to 'alee-msp430.cpp')
-rw-r--r-- | alee-msp430.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/alee-msp430.cpp b/alee-msp430.cpp index 7c82c03..86582a1 100644 --- a/alee-msp430.cpp +++ b/alee-msp430.cpp @@ -90,10 +90,7 @@ int main() *ptr++ = c; } } - } - - return 0; } static void readchar(State& state) @@ -157,3 +154,6 @@ void user_sys(State& state) } } +extern "C" int atexit(void (*)()) { return 0; } +void operator delete(void *) {} +void operator delete(void *, std::size_t) {} |