]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/coredump/test-coredump-vacuum.c
tree-wide: beautify remaining copyright statements
[thirdparty/systemd.git] / src / coredump / test-coredump-vacuum.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 /***
3 Copyright © 2012 Zbigniew Jędrzejewski-Szmek
4 ***/
5
6 #include <stdlib.h>
7
8 #include "coredump-vacuum.h"
9
10 int main(int argc, char *argv[]) {
11
12 if (coredump_vacuum(-1, (uint64_t) -1, 70 * 1024) < 0)
13 return EXIT_FAILURE;
14
15 return EXIT_SUCCESS;
16 }