mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 18:13:01 +00:00
e.g. on s390x with glibc 2.3.4. Modify the testcase to bypass the ioctl call in that case. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@14649
10 lines
99 B
C
10 lines
99 B
C
#include <sys/ioctl.h>
|
|
|
|
int main()
|
|
{
|
|
#ifdef TIOCSIG
|
|
ioctl(9, TIOCSIG, 9);
|
|
#endif
|
|
return 0;
|
|
}
|