1#include "scalar.h" 2 3int main(void) 4{ 5 int res __attribute__((unused)); 6 7 // All __NR_xxx numbers are taken from x86 8 9 // __NR_vfork 190 --> arch/sys_fork() [we can't use sys_vfork()] 10 GO(__NR_vfork, "0e"); 11 SY(__NR_vfork); 12 13 return(0); 14} 15 16