diff --git a/tests/stdio/dprintf.c b/tests/stdio/dprintf.c
index 766012818ca0bbde8f209900aa28a56f4c5aeee8..b61d5cfa9782dc385e3ef463f78930ab32deb2e8 100644
--- a/tests/stdio/dprintf.c
+++ b/tests/stdio/dprintf.c
@@ -1,15 +1,14 @@
 #include <stdio.h>
-#include <fcntl.h>
+#include <unistd.h>
 
 #include "test_helpers.h"
 
-int main(void)
-{
-    int fd = open("/dev/stdout", O_WRONLY, 0222);
-    ERROR_IF(open, fd, < 0);
-
+int main(void) {
     const char *msg = "Hello, %s";
 
+    int fd = dup(STDOUT_FILENO);
+    ERROR_IF(dup, fd, == -1);
+
     int result = dprintf(fd, msg, "world");
     ERROR_IF(dprintf, result, != sizeof("Hello, world") - 1);
     UNEXP_IF(dprintf, result, < 0);
@@ -21,4 +20,4 @@ int main(void)
     close(fd);
 
     return 0;
-}
\ No newline at end of file
+}