]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/coredump/test-coredump-vacuum.c
Merge pull request #17549 from yuwata/tiny-fixes
[thirdparty/systemd.git] / src / coredump / test-coredump-vacuum.c
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2
3 #include <stdlib.h>
4
5 #include "coredump-vacuum.h"
6
7 int main(int argc, char *argv[]) {
8
9 if (coredump_vacuum(-1, (uint64_t) -1, 70 * 1024) < 0)
10 return EXIT_FAILURE;
11
12 return EXIT_SUCCESS;
13 }