summaryrefslogtreecommitdiff
path: root/src/pugixml.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pugixml.cpp')
-rw-r--r--src/pugixml.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/pugixml.cpp b/src/pugixml.cpp
index ea37320..17dbddd 100644
--- a/src/pugixml.cpp
+++ b/src/pugixml.cpp
@@ -1684,6 +1684,12 @@ namespace pugi
{
namespace impl
{
+ // Compare two strings
+ int strcmp(const char* src, const char* dst)
+ {
+ return ::strcmp(src, dst);
+ }
+
// Compare two strings, with globbing, and character sets.
int strcmpwild(const char* src, const char* dst)
{