* fuzz/wget_options_fuzzer.c: Declare fopen_* as C functions

This commit is contained in:
Tim Rühsen 2018-04-17 23:35:42 +02:00
parent 66b416b6cd
commit bb03572c2a

View File

@ -33,6 +33,8 @@
// declarations for wget internal functions // declarations for wget internal functions
int main_wget(int argc, const char **argv); int main_wget(int argc, const char **argv);
void cleanup(void); void cleanup(void);
FILE *fopen_wget(const char *pathname, const char *mode);
FILE *fopen_wgetrc(const char *pathname, const char *mode);
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif