summaryrefslogtreecommitdiffstats
path: root/nuttx/include
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-07-29 18:30:48 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-07-29 18:30:48 +0000
commit5d66bdcdf2d7127c6fabb9a2cd341d48ed0222a5 (patch)
treecbdb5c1080982d7ba1ef48411a51b061f3e7571e /nuttx/include
parent908d7b4d75360194163be289e194bccbd2c2e373 (diff)
Review and update some board configurations
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4991 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/include')
-rw-r--r--nuttx/include/cxx/cstring12
1 files changed, 8 insertions, 4 deletions
diff --git a/nuttx/include/cxx/cstring b/nuttx/include/cxx/cstring
index 156e01856b..84d98277d2 100644
--- a/nuttx/include/cxx/cstring
+++ b/nuttx/include/cxx/cstring
@@ -1,7 +1,7 @@
//***************************************************************************
// include/cxx/cstring
//
-// Copyright (C) 2009 Gregory Nutt. All rights reserved.
+// Copyright (C) 2009-2012 Gregory Nutt. All rights reserved.
// Author: Gregory Nutt <gnutt@nuttx.org>
//
// Redistribution and use in source and binary forms, with or without
@@ -50,7 +50,7 @@
namespace std
{
using ::size_t;
- using ::strchr;
+
using ::strdup;
using ::strndup;
using ::strerror;
@@ -70,12 +70,16 @@ namespace std
using ::strspn;
using ::strcspn;
using ::strstr;
+ using ::strcasestr;
using ::strtok;
using ::strtok_r;
- using ::memset;
- using ::memcpy;
+
+ using ::memchr;
+ using ::memccpy;
using ::memcmp;
+ using ::memcpy;
using ::memmove;
+ using ::memset;
}
#endif // __INCLUDE_CXX_CSTRING