diff options
author | Thomas Bushnell, BSG <thomas@gnu.org> | 1997-01-17 19:27:54 +0000 |
---|---|---|
committer | Thomas Bushnell, BSG <thomas@gnu.org> | 1997-01-17 19:27:54 +0000 |
commit | 038ebe2459c2d5f35f8dafb7c357767459244ab0 (patch) | |
tree | 4c7dfc901614e18b686678accaaca10e8168a57a /sysdeps/unix/bsd | |
parent | f94d25d4ee6de5118be0bcbe0d606895a9c05c0d (diff) | |
download | glibc-038ebe2459c2d5f35f8dafb7c357767459244ab0.zip glibc-038ebe2459c2d5f35f8dafb7c357767459244ab0.tar.gz glibc-038ebe2459c2d5f35f8dafb7c357767459244ab0.tar.bz2 |
*** 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.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/bsd/tcsendbrk.c b/sysdeps/unix/bsd/tcsendbrk.c index 8e63163..55175dc 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); } |