]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/coredump/test-coredump-vacuum.c
tree-wide: use UINT64_MAX or friends
[thirdparty/systemd.git] / src / coredump / test-coredump-vacuum.c
CommitLineData
db9ecf05 1/* SPDX-License-Identifier: LGPL-2.1-or-later */
0dc5d23c
LP
2
3#include <stdlib.h>
4
5#include "coredump-vacuum.h"
6
7int main(int argc, char *argv[]) {
8
f5fbe71d 9 if (coredump_vacuum(-1, UINT64_MAX, 70 * 1024) < 0)
0dc5d23c
LP
10 return EXIT_FAILURE;
11
12 return EXIT_SUCCESS;
13}