Julian Seward bf6bf8fbbe Move all the 'scalar' (syscall-arg) tests into x86/. In fact they are
really x86-linux specific, but fixing it all properly will have to
wait for another day.



git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3615
2005-05-04 13:53:00 +00:00

16 lines
202 B
C

#include "scalar.h"
int main(void)
{
int res;
// All __NR_xxx numbers are taken from x86
// __NR_fork 2 --> arch/sys_fork()
GO(__NR_fork, "0e");
SY(__NR_fork);
return(0);
}