libclod
C library for interacting with NBTs, region files, LOD data and other things.
Loading...
Searching...
No Matches
keepalive_daemon.c
1
#include "config.h"
2
#include "keepalive.h"
3
4
#if defined(__linux__)
5
#include <unistd.h>
6
#include <sys/syscall.h>
7
8
__attribute__((noreturn))
9
void
__stack_chk_fail(
void
) {
10
syscall(SYS_write, 2,
"libclod: stack check failed\n"
, 28);
11
syscall(SYS_exit, 1);
12
__builtin_unreachable();
13
}
14
#endif
15
16
int
keepalive_main(
int
,
char
**) {
17
return
1;
18
}
src
rwseq
keepalive_daemon.c
Generated by
1.16.1