Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

64 rindas
1.7KB

  1. /* Teensyduino Core Library
  2. * http://www.pjrc.com/teensy/
  3. * Copyright (c) 2017 PJRC.COM, LLC.
  4. *
  5. * Permission is hereby granted, free of charge, to any person obtaining
  6. * a copy of this software and associated documentation files (the
  7. * "Software"), to deal in the Software without restriction, including
  8. * without limitation the rights to use, copy, modify, merge, publish,
  9. * distribute, sublicense, and/or sell copies of the Software, and to
  10. * permit persons to whom the Software is furnished to do so, subject to
  11. * the following conditions:
  12. *
  13. * 1. The above copyright notice and this permission notice shall be
  14. * included in all copies or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  17. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  18. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  19. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  20. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  21. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  22. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  23. * SOFTWARE.
  24. */
  25. #include "new.h"
  26. void * operator new(size_t size)
  27. {
  28. return malloc(size);
  29. }
  30. void * operator new[](size_t size)
  31. {
  32. return malloc(size);
  33. }
  34. void operator delete(void * ptr)
  35. {
  36. free(ptr);
  37. }
  38. void operator delete[](void * ptr)
  39. {
  40. free(ptr);
  41. }
  42. void operator delete(void * ptr, size_t size)
  43. {
  44. free(ptr);
  45. }
  46. void operator delete[](void * ptr, size_t size)
  47. {
  48. free(ptr);
  49. }
  50. //int __cxa_guard_acquire(__guard *g) {return !*(char *)(g);};
  51. //void __cxa_guard_release (__guard *g) {*(char *)g = 1;};
  52. //void __cxa_guard_abort (__guard *) {};
  53. //void __cxa_pure_virtual(void) {};