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:
parent
6004a4126a
commit
ae2cbbb2e0
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user