From 038ebe2459c2d5f35f8dafb7c357767459244ab0 Mon Sep 17 00:00:00 2001 From: "Thomas Bushnell, BSG" Date: Fri, 17 Jan 1997 19:27:54 +0000 Subject: *** empty log message *** Fri Jan 17 14:16:28 1997 Thomas Bushnell, n/BSG * stdio/vdprintf.c: Moved file to ... * sysdeps/posix/vdprintf.c: Here. De-ansideclificate. * sysdeps/stub/vdprintf.c: New file. * sysdeps/mach/hurd/vdprintf.c: New file. --- sysdeps/unix/bsd/tcsendbrk.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sysdeps/unix/bsd/tcsendbrk.c') diff --git a/sysdeps/unix/bsd/tcsendbrk.c b/sysdeps/unix/bsd/tcsendbrk.c index 8e63163af1..55175dc88a 100644 --- a/sysdeps/unix/bsd/tcsendbrk.c +++ b/sysdeps/unix/bsd/tcsendbrk.c @@ -44,7 +44,7 @@ tcsendbreak (fd, duration) delay.tv_usec = duration; /* Starting sending break. */ - if (__ioctl (fd, TIOCSBRK, (PTR) NULL) < 0) + if (__ioctl (fd, TIOCSBRK, (void *) NULL) < 0) return -1; /* Wait DURATION microseconds. */ @@ -52,5 +52,5 @@ tcsendbreak (fd, duration) &delay); /* Turn off the break. */ - return __ioctl (fd, TIOCCBRK, (PTR) NULL); + return __ioctl (fd, TIOCCBRK, (void *) NULL); } -- cgit 1.4.1