]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/coredump/test-coredump-vacuum.c
basic/log: add the log_struct terminator to macro
[thirdparty/systemd.git] / src / coredump / test-coredump-vacuum.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 /***
3 This file is part of systemd.
4
5 Copyright 2012 Zbigniew Jędrzejewski-Szmek
6 ***/
7
8 #include <stdlib.h>
9
10 #include "coredump-vacuum.h"
11
12 int main(int argc, char *argv[]) {
13
14 if (coredump_vacuum(-1, (uint64_t) -1, 70 * 1024) < 0)
15 return EXIT_FAILURE;
16
17 return EXIT_SUCCESS;
18 }