summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2009-02-17 14:19:08 +0100
committerAndreas Baumann <abaumann@yahoo.com>2009-02-17 14:19:08 +0100
commit7dd9fc654c692f23bf88f43c520a0cc8414e2fc1 (patch)
treee55ea96c27f96076d3e06ac537d95cf1788ced63 /include
parent6415fd5dcd8e663661145476c7e2e1b41b927d10 (diff)
downloadwolfbones-7dd9fc654c692f23bf88f43c520a0cc8414e2fc1.tar.gz
wolfbones-7dd9fc654c692f23bf88f43c520a0cc8414e2fc1.tar.bz2
renamed porting stub functions to functions with prefix wolf_port_
Diffstat (limited to 'include')
-rw-r--r--include/wolf/port/string.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/wolf/port/string.h b/include/wolf/port/string.h
index 335ce7e..b611076 100644
--- a/include/wolf/port/string.h
+++ b/include/wolf/port/string.h
@@ -38,13 +38,13 @@
#endif
#if !defined HAVE_STRDUP
-extern char *wolf_strdup( const char * );
-#define stdrup wolf_strdup
+extern char *wolf_port_strdup( const char * );
+#define stdrup wolf_port_strdup
#endif
#if !defined HAVE_STRERROR_R
-extern int wolf_strerror_r( int num, char *buf, size_t buflen );
-#define strerror_r( errnum, buf, buflen ) wolf_strerror_r( errnum, buf, buflen )
+extern int wolf_port_strerror_r( int num, char *buf, size_t buflen );
+#define strerror_r( errnum, buf, buflen ) wolf_port_strerror_r( errnum, buf, buflen )
#endif
/** @} */ /* @addtogroup wolf_port */