summaryrefslogtreecommitdiff
path: root/lib/libpthread/thread/thr_printf.c
diff options
context:
space:
mode:
authorDaniel Eischen <deischen@FreeBSD.org>2003-04-18 05:04:16 +0000
committerDaniel Eischen <deischen@FreeBSD.org>2003-04-18 05:04:16 +0000
commita0240e2cb0b1ef8e5b61930ac2b850c884daaba8 (patch)
tree46bc1e113ddc7c1ed88e4fa724039df8664c963a /lib/libpthread/thread/thr_printf.c
parentb025fc9a31c85b9cde9969e1fea55ea4caf650d5 (diff)
Notes
Diffstat (limited to 'lib/libpthread/thread/thr_printf.c')
-rw-r--r--lib/libpthread/thread/thr_printf.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/lib/libpthread/thread/thr_printf.c b/lib/libpthread/thread/thr_printf.c
index 0da9ae52213c..f0791df46572 100644
--- a/lib/libpthread/thread/thr_printf.c
+++ b/lib/libpthread/thread/thr_printf.c
@@ -29,13 +29,9 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
-#include <sys/types.h>
-#include <sys/fcntl.h>
-#include <sys/uio.h>
-#include <errno.h>
#include <stdarg.h>
+#include <string.h>
#include <unistd.h>
-#include <pthread.h>
#include "thr_private.h"
@@ -109,7 +105,7 @@ static void
pchar(int fd, char c)
{
- write(fd, &c, 1);
+ __sys_write(fd, &c, 1);
}
/*
@@ -119,6 +115,6 @@ static void
pstr(int fd, const char *s)
{
- write(fd, s, strlen(s));
+ __sys_write(fd, s, strlen(s));
}