Fix bugs in fetch backend of powerpc64le
[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