mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-07 04:38:00 +00:00
16 lines
226 B
C
16 lines
226 B
C
#include "scalar.h"
|
|
|
|
int main(void)
|
|
{
|
|
int res __attribute__((unused));
|
|
|
|
// All __NR_xxx numbers are taken from x86
|
|
|
|
// __NR_fork 2 --> arch/sys_fork()
|
|
GO(__NR_fork, "0e");
|
|
SY(__NR_fork);
|
|
|
|
return(0);
|
|
}
|
|
|