20 lines
557 B
C
20 lines
557 B
C
//////////////////////////////////////////////////////////////////////////////
|
|
// Course: Real Time Systems
|
|
// Lecturer: Dr.-Ing. Frank Golatowski
|
|
// Exercise instructor: M.Sc. Michael Rethfeldt
|
|
// Exercise: 2
|
|
// Task: 1
|
|
// Name: aufgabe1_sohn.c
|
|
// Description: Son process
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <sys/wait.h>
|
|
|
|
int main(void)
|
|
{
|
|
printf("I am the son.\n");
|
|
return 0;
|
|
}
|