projects
/
platform
/
upstream
/
ltrace.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Force use of SYS_open on aarch64 as well
[platform/upstream/ltrace.git]
/
testsuite
/
ltrace.main
/
hello-vfork.c
1
/* Copyright (C) 2008, Red Hat, Inc.
2
* Written by Denys Vlasenko */
3
#include <stdio.h>
4
#include <unistd.h>
5
6
int main() {
7
int r = vfork();
8
fprintf(stdout, "vfork():%d\n", r);
9
_exit(0);
10
}
11