Fix build after #1327

Fixes #1335.

In file included from ./irp.h:27:
./chansrv_fuse.h:39:5: error: unknown type name 'time_t'
    time_t          atime;             /* Time of last access.              */
    ^
./chansrv_fuse.h:40:5: error: unknown type name 'time_t'
    time_t          mtime;             /* Time of last modification.        */
    ^
./chansrv_fuse.h:41:5: error: unknown type name 'time_t'
    time_t          ctime;             /* Time of last status change.       */
    ^
3 errors generated.
*** Error code 1
This commit is contained in:
Koichiro IWAO 2019-04-18 14:25:46 +09:00
parent 6004a4126a
commit ae2cbbb2e0
No known key found for this signature in database
GPG Key ID: 9F72CDBC01BF10EB

View File

@ -24,6 +24,9 @@
#ifndef __IRP_H
#define __IRP_H
#ifndef _TIME_H_
#include <time.h>
#endif
#include "chansrv_fuse.h"
typedef struct fuse_data FUSE_DATA;