mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-13 18:48:08 +00:00
Make open_file() inline
This commit is contained in:
@ -945,7 +945,6 @@ void destroy_extras(afl_state_t *);
|
||||
|
||||
/* Stats */
|
||||
|
||||
FILE *open_file(const char *);
|
||||
void write_fuzzer_config_file(afl_state_t *);
|
||||
void write_stats_file(afl_state_t *, double, double, double);
|
||||
void maybe_update_plot_file(afl_state_t *, double, double);
|
||||
|
@ -29,7 +29,7 @@
|
||||
|
||||
/* Open file for writing */
|
||||
|
||||
FILE *open_file(const char *fn) {
|
||||
inline FILE *open_file(const char *fn) {
|
||||
|
||||
s32 fd;
|
||||
FILE *f;
|
||||
|
Reference in New Issue
Block a user