summaryrefslogtreecommitdiffhomepage
path: root/digital/ucoolib/ucoolib/arch/syscalls_cc.cc
diff options
context:
space:
mode:
authorNicolas Schodet2012-12-22 09:21:12 +0100
committerNicolas Schodet2012-12-23 12:42:25 +0100
commit1f29aff77b6bbda0fecc636c8e33dcc2deab664e (patch)
tree7543564a09651a7c2eddd8d134bcacadd3a6def1 /digital/ucoolib/ucoolib/arch/syscalls_cc.cc
parent2aa471e14cd1ad9a2066159925cdb998fe9eae05 (diff)
digital/ucoolib/ucoolib/arch: compile syscalls as C++
Diffstat (limited to 'digital/ucoolib/ucoolib/arch/syscalls_cc.cc')
-rw-r--r--digital/ucoolib/ucoolib/arch/syscalls_cc.cc36
1 files changed, 0 insertions, 36 deletions
diff --git a/digital/ucoolib/ucoolib/arch/syscalls_cc.cc b/digital/ucoolib/ucoolib/arch/syscalls_cc.cc
deleted file mode 100644
index 030e7b40..00000000
--- a/digital/ucoolib/ucoolib/arch/syscalls_cc.cc
+++ /dev/null
@@ -1,36 +0,0 @@
-// ucoolib - Microcontroller object oriented library. {{{
-//
-// Copyright (C) 2012 Nicolas Schodet
-//
-// APBTeam:
-// Web: http://apbteam.org/
-// Email: team AT apbteam DOT org
-//
-// This program is free software; you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation; either version 2 of the License, or
-// (at your option) any later version.
-//
-// This program 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 General Public License for more details.
-//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-//
-// }}}
-
-namespace __gnu_cxx {
-
-/// Replaces the default verbose terminate handler.
-/// Avoids the inclusion of code to inpect C++ objects.
-void
-__verbose_terminate_handler ()
-{
- while (1)
- ;
-}
-
-} //namespace __gnu_cxx