Add compatibility define for off64_t.

Not all systems define off64_t.
pull/342/head
Thomas Klausner 2021-04-15 12:41:40 +02:00
parent 814b724cc4
commit 30763e2f9d
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 } ;
#ifndef off64_t
#define off64_t off_t
#endif
namespace os
{
struct Error : virtual Exception {} ;