geocore/coding/internal/file64_api.hpp
2019-09-16 17:54:22 +03:00

11 lines
186 B
C++

#pragma once
#include "base/base.hpp"
// POSIX standart.
#include <sys/types.h>
static_assert(sizeof(off_t) == 8, "");
#define fseek64 fseeko
#define ftell64 ftello
#include <cstdio>