repo.or.cz
/
valgrind.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
tests/vg_regtest: Always evaluate prerequisite expressions with sh
[valgrind.git]
/
memcheck
/
tests
/
darwin
/
ioctl-tiocsbrk.c
blob
e98f0be4bc057e2ac596162f104be7cc9ea29b11
1
/* Tests for TIOCSBRK per https://bugs.kde.org/show_bug.cgi?id=208217
2
*/
3
4
#include <sys/ioctl.h>
5
6
int
main
(
int
argc
,
const char
*
argv
[])
7
{
8
#ifdef TIOCSBRK
9
ioctl
(
1
,
TIOCSBRK
,
0
);
10
ioctl
(
1
,
TIOCCBRK
,
0
);
11
#endif
12
13
return
0
;
14
}