aboutsummaryrefslogtreecommitdiff
path: root/semestr-5/so/lista2/buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'semestr-5/so/lista2/buffer.c')
-rw-r--r--semestr-5/so/lista2/buffer.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/semestr-5/so/lista2/buffer.c b/semestr-5/so/lista2/buffer.c
new file mode 100644
index 0000000..8b549a1
--- /dev/null
+++ b/semestr-5/so/lista2/buffer.c
@@ -0,0 +1,13 @@
+#include <sys/types.h>
+#include <unistd.h>
+#include <stdio.h>
+#include <stdlib.h>
+
+int main()
+{
+ printf("hello world...");
+ // fflush(stdout);
+ fork();
+ fork();
+ fork();
+}