added demo of signal/uid handling feature
[tridge/junkcode.git] / not.c
1 #include <stdio.h>
2 main()
3 {
4         if (! 2 & 1) {
5                 printf("1\n");
6         }
7         if (! (2 & 1)) {
8                 printf("2\n");
9         }
10
11 }