mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
18 lines
367 B
C
18 lines
367 B
C
#include "util.h"
|
|
#include <stdlib.h>
|
|
#include <libproc.h>
|
|
#include <unistd.h>
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
|
|
#define fatal(...) { fprintf(stderr, __VA_ARGS__); exit(EXIT_FAILURE); }
|
|
#define arraysz(x) (sizeof(x)/sizeof(x[0]))
|
|
|
|
|
|
int
|
|
main(int argc, char * const *argv) {
|
|
run(PROGRAM, MODULE, FUNCTION, IS_GUI, argc, argv);
|
|
return 0;
|
|
}
|