GIT.Harvie.CZ
/
mirrors
/
Programs.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Added script to find files not owned by pacman package manager (ArchLinux)
[mirrors/Programs.git]
/
c
/
alarm
/
alarm.c
1
#include <stdio.h>
2
#include <signal.h>
3
4
static void
alrm_handler
(
int
signo
) {
5
alarm
(
1
);
6
printf
(
"LOL!
\n
"
);
7
}
8
9
int
main
(
int
argc
,
char
*
argv
[]) {
10
11
//signal(SIGALRM, &alrm_handler);
12
//alarm(1);
13
14
while
(
1
) {
15
sleep
(
1
);
16
printf
(
"."
);
17
}
18
19
}
This page took
0.906649 seconds
and
4
git commands to generate.