fix off64_t under OpenBSD

pull/327/head
Rafael Sadowski 2020-10-04 20:30:11 +02:00
parent ffb744a59b
commit 8f3fac2c9f
1 changed files with 4 additions and 0 deletions

View File

@ -31,6 +31,10 @@ class Path ;
enum FileType { FT_FILE = 1, FT_DIR = 2, FT_UNKNOWN = 3 } ;
#ifdef __OpenBSD__
#define off64_t off_t
#endif
namespace os
{
struct Error : virtual Exception {} ;