• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include "scalar.h"
2 
main(void)3 int main(void)
4 {
5    int res __attribute__((unused));
6 
7    // All __NR_xxx numbers are taken from x86
8 
9    // __NR_fork 2 --> arch/sys_fork()
10    GO(__NR_fork, "0e");
11    SY(__NR_fork);
12 
13    return(0);
14 }
15 
16