/*
    Tworzenie drugiego procesu poprzez fork() :)
*/


#include <sys/types.h>

int main ( void )
{
    pid_t pid;

    /* tu jest jeden proces */
    printf( "One\n" );

    /* tworzę proces */
    pid = fork();

    /* tu są już 2 procesy */
    printf( "Two |%d|\n", pid );
    
    return 0;
}
