1 /* SPDX-License-Identifier: LGPL-2.1-or-later */ 2 3 #include <stdlib.h> 4 5 #include "coredump-vacuum.h" 6 main(int argc,char * argv[])7int main(int argc, char *argv[]) { 8 9 if (coredump_vacuum(-1, UINT64_MAX, 70 * 1024) < 0) 10 return EXIT_FAILURE; 11 12 return EXIT_SUCCESS; 13 } 14