Pipes and COPY-ON-WRITE
In this example, every forked process gets its own copy of the
countervariable i through copy-on-write.
committer: Markus Bröker <mbroeker@largo.homelinux.org>
/**
* libtest/main.c
* Copyright (C) 2008 Markus Broeker
*/
void func1 ();
void func2 ();
int main (int argc, char **argv)
{
func1 ();
func2 ();
return 0;
}