about summary refs log tree commit diff
path: root/sysdeps/unix/bsd
diff options
context:
space:
mode:
authorThomas Bushnell, BSG <thomas@gnu.org>1997-01-17 19:27:54 +0000
committerThomas Bushnell, BSG <thomas@gnu.org>1997-01-17 19:27:54 +0000
commit038ebe2459c2d5f35f8dafb7c357767459244ab0 (patch)
tree4c7dfc901614e18b686678accaaca10e8168a57a /sysdeps/unix/bsd
parentf94d25d4ee6de5118be0bcbe0d606895a9c05c0d (diff)
downloadglibc-038ebe2459c2d5f35f8dafb7c357767459244ab0.tar.gz
glibc-038ebe2459c2d5f35f8dafb7c357767459244ab0.tar.xz
glibc-038ebe2459c2d5f35f8dafb7c357767459244ab0.zip
*** empty log message ***
Fri Jan 17 14:16:28 1997  Thomas Bushnell, n/BSG  <thomas@gnu.ai.mit.edu>

	* 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.
Diffstat (limited to 'sysdeps/unix/bsd')
-rw-r--r--sysdeps/unix/bsd/tcsendbrk.c4
1 files changed, 2 insertions, 2 deletions
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);
 }