summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/POSIX/vfork.c
blob: a947cce1441730e24afb96d6a5ba9d78afb3c671 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Copyright (c) 2009 by
 * Ralf Corsépius, Ulm, Germany. All rights reserved.
 *
 * Permission to use, copy, modify, and distribute this software
 * is freely granted, provided that this notice is preserved.
 */

#include <sys/types.h>
#include <unistd.h>

int
main (void)
{
  pid_t pid;
  pid = vfork ();

  return 0;
}