projects
/
kopensolaris-gnu
/
glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ad8f430
)
Thu Jan 9 15:59:35 1997 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
libc-970117
author
thomas
<thomas>
Mon, 13 Jan 1997 18:59:02 +0000
(18:59 +0000)
committer
thomas
<thomas>
Mon, 13 Jan 1997 18:59:02 +0000
(18:59 +0000)
* sysdeps/unix/bsd/tcsendbrk.c (tcsendbreak): Finish
deansideclification.
sysdeps/unix/bsd/tcsendbrk.c
patch
|
blob
|
history
diff --git
a/sysdeps/unix/bsd/tcsendbrk.c
b/sysdeps/unix/bsd/tcsendbrk.c
index
8e63163
..
55175dc
100644
(file)
--- 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);
}