tests/vg_regtest: Always evaluate prerequisite expressions with sh
[valgrind.git] / memcheck / tests / darwin / ioctl-tiocsbrk.c
blobe98f0be4bc057e2ac596162f104be7cc9ea29b11
1 /* Tests for TIOCSBRK per https://bugs.kde.org/show_bug.cgi?id=208217
2 */
4 #include <sys/ioctl.h>
6 int main(int argc, const char *argv[])
8 #ifdef TIOCSBRK
9 ioctl(1, TIOCSBRK, 0);
10 ioctl(1, TIOCCBRK, 0);
11 #endif
13 return 0;