summaryrefslogtreecommitdiff
path: root/nuttx/libxx/libxx_deletea.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/libxx/libxx_deletea.cxx')
-rw-r--r--nuttx/libxx/libxx_deletea.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/nuttx/libxx/libxx_deletea.cxx b/nuttx/libxx/libxx_deletea.cxx
index e7cfee647..a25a60717 100644
--- a/nuttx/libxx/libxx_deletea.cxx
+++ b/nuttx/libxx/libxx_deletea.cxx
@@ -1,7 +1,7 @@
//***************************************************************************
// libxx/libxx_newa.cxx
//
-// Copyright (C) 2009 Gregory Nutt. All rights reserved.
+// Copyright (C) 2009, 2013 Gregory Nutt. All rights reserved.
// Author: Gregory Nutt <gnutt@nuttx.org>
//
// Redistribution and use in source and binary forms, with or without
@@ -38,7 +38,8 @@
//***************************************************************************
#include <nuttx/config.h>
-#include <cstdlib>
+
+#include "libxx_internal.hxx"
//***************************************************************************
// Definitions
@@ -58,5 +59,5 @@
void operator delete[](void *ptr)
{
- free(ptr);
+ lib_free(ptr);
}