mirror of
https://github.com/git/git
synced 2024-10-28 19:25:47 +00:00
1c4b660412
CodingGuidelines states that the first #include in C files should be git-compat-util.h or another header file that includes it, such as cache.h or builtin.h. Signed-off-by: David Aguilar <davvid@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
22 lines
344 B
C
22 lines
344 B
C
#include "cache.h"
|
|
#include "sigchain.h"
|
|
|
|
#define X(f) \
|
|
static void f(int sig) { \
|
|
puts(#f); \
|
|
fflush(stdout); \
|
|
sigchain_pop(sig); \
|
|
raise(sig); \
|
|
}
|
|
X(one)
|
|
X(two)
|
|
X(three)
|
|
#undef X
|
|
|
|
int main(int argc, char **argv) {
|
|
sigchain_push(SIGTERM, one);
|
|
sigchain_push(SIGTERM, two);
|
|
sigchain_push(SIGTERM, three);
|
|
raise(SIGTERM);
|
|
return 0;
|
|
}
|