Commit 955f1293 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Try to fix the obnoxious _stati64 warning

parent 9a234d8f
......@@ -447,6 +447,13 @@ typedef struct update_iterator_t update_iterator_t;
/* Meta engine */
typedef struct meta_engine_t meta_engine_t;
/* stat/lstat/fstat */
#ifdef WIN32
struct _stati64;
#else
struct stat;
#endif
/*****************************************************************************
* Variable callbacks
*****************************************************************************/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment