summaryrefslogtreecommitdiff
path: root/tests/port/test_strdup.c
diff options
context:
space:
mode:
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 );
}