summaryrefslogtreecommitdiff
path: root/misc/uClibc++/include/uClibc++/deque
diff options
context:
space:
mode:
Diffstat (limited to 'misc/uClibc++/include/uClibc++/deque')
-rw-r--r--misc/uClibc++/include/uClibc++/deque36
1 files changed, 20 insertions, 16 deletions
diff --git a/misc/uClibc++/include/uClibc++/deque b/misc/uClibc++/include/uClibc++/deque
index 19be5c8bb..48b5db3b3 100644
--- a/misc/uClibc++/include/uClibc++/deque
+++ b/misc/uClibc++/include/uClibc++/deque
@@ -1,20 +1,20 @@
/* Copyright (C) 2004 Garrett A. Kajmowicz
- This file is part of the uClibc++ Library.
- 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-*/
+ *
+ * This file is part of the uClibc++ Library.
+ * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
#include <memory>
#include <iterator>
@@ -25,6 +25,8 @@
#ifndef __STD_HEADER_DEQUE
#define __STD_HEADER_DEQUE
+extern "C++"
+{
namespace std
{
template <class T, class Allocator = allocator<T> > class deque;
@@ -1057,7 +1059,9 @@ namespace std
template <class T, class Allocator> _UCXXEXPORT void swap(deque<T,Allocator>& x, deque<T,Allocator>& y){
x.swap(y);
}
+
} // namespace
+} // extern "C++"
#pragma GCC visibility pop