summaryrefslogtreecommitdiff
path: root/tests/port/test_strdup.c
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 /tests/port/test_strdup.c
parent6415fd5dcd8e663661145476c7e2e1b41b927d10 (diff)
downloadwolfbones-7dd9fc654c692f23bf88f43c520a0cc8414e2fc1.tar.gz
wolfbones-7dd9fc654c692f23bf88f43c520a0cc8414e2fc1.tar.bz2
renamed porting stub functions to functions with prefix wolf_port_
Diffstat (limited to 'tests/port/test_strdup.c')
-rw-r--r--tests/port/test_strdup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/port/test_strdup.c b/tests/port/test_strdup.c
index 9cc1be6..fd1c843 100644
--- a/tests/port/test_strdup.c
+++ b/tests/port/test_strdup.c
@@ -8,7 +8,7 @@
int main( void ) {
const char *s = "test";
- char *d = wolf_strdup( s );
+ char *d = wolf_port_strdup( s );
free( d );
exit( EXIT_SUCCESS );
}