blob: 9dbe2e72ec09bf4c9c23448b5cdbd83a89e95fba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include <stdbool.h>
#include <stdint.h>
#ifndef EVANIX_H
struct evanix_opts_t {
bool isflake;
bool isdryrun;
bool ispipelined;
bool solver_report;
bool close_unused_fd;
bool cache_status;
char *system;
uint32_t max_build;
};
extern struct evanix_opts_t evanix_opts;
#define EVANIX_H
#endif
|