From 60d47abfcfa901aafd85ba49b12d5994d7ef9aae Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Wed, 2 Dec 2009 15:00:05 +0000 Subject: New. --- testsuites/libtests/POSIX/vfork.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 testsuites/libtests/POSIX/vfork.c (limited to 'testsuites/libtests/POSIX/vfork.c') diff --git a/testsuites/libtests/POSIX/vfork.c b/testsuites/libtests/POSIX/vfork.c new file mode 100644 index 0000000000..a947cce144 --- /dev/null +++ b/testsuites/libtests/POSIX/vfork.c @@ -0,0 +1,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 +#include + +int +main (void) +{ + pid_t pid; + pid = vfork (); + + return 0; +} -- cgit v1.2.3