Sample: cleaning up Inheritance
[io/quag.git] / libs / basekit / source / PortableTruncate.h
blobf43c2662d20c47ff3c5b1932c62c512c0a4ff7e9
2 #ifdef __cplusplus
3 extern "C" {
4 #endif
7 #ifdef _WIN32
8 #include "Common.h"
10 BASEKIT_API int truncate(const char *path, long length);
12 #else
14 #include <unistd.h>
16 #endif
19 #ifdef __cplusplus
21 #endif