Nicholas Nethercote 53b147dfb8 Create memcheck/tests/x86-linux/ and move some platform-specific tests (the
scalar* ones) into it.  Partial merge from DARWIN branch, r8943.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8974
2009-01-19 03:16:59 +00:00

16 lines
235 B
C

#include "scalar.h"
int main(void)
{
int res;
// All __NR_xxx numbers are taken from x86
// __NR_vfork 190 --> arch/sys_fork() [we can't use sys_vfork()]
GO(__NR_vfork, "0e");
SY(__NR_vfork);
return(0);
}