Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add new.cpp from Arduino SAMD to resolve issue with new operator pull…
…ing in loads of library functions and taking loads of flash
  • Loading branch information
rogerclarkmelbourne committed Nov 29, 2016
1 parent a1f154b commit 9237d3a
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions STM32F1/cores/maple/new.cpp
@@ -0,0 +1,36 @@
/*
Copyright (c) 2014 Arduino. All right reserved.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/

#include <stdlib.h>

void *operator new(size_t size) {
return malloc(size);
}

void *operator new[](size_t size) {
return malloc(size);
}

void operator delete(void * ptr) {
free(ptr);
}

void operator delete[](void * ptr) {
free(ptr);
}

0 comments on commit 9237d3a

Please sign in to comment.