2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-22 09:58:09 +00:00
criu/compel/include/piegen.h
Adrian Reber 70833bcf29 Run 'make indent' on header files
Acked-by: Mike Rapoport <rppt@linux.ibm.com>
Signed-off-by: Adrian Reber <areber@redhat.com>
2021-09-03 10:31:00 -07:00

29 lines
595 B
C

#ifndef COMPEL_PIEGEN_H__
#define COMPEL_PIEGEN_H__
#include <stdio.h>
#include <unistd.h>
#include <elf.h>
#include "common/compiler.h"
typedef struct {
char *input_filename;
char *output_filename;
char *prefix;
FILE *fout;
} piegen_opt_t;
extern piegen_opt_t opts;
#define pr_out(fmt, ...) \
do { \
if (opts.fout) \
fprintf(opts.fout, fmt, ##__VA_ARGS__); \
} while (0)
extern int handle_binary(void *mem, size_t size);
#endif /* COMPEL_PIEGEN_H__ */