mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
0d44815bf5
git-svn-id: file:///svn/toku/tokudb.1032b@7778 c7de825b-a66e-492c-adef-691d508d4ae1
22 lines
347 B
C
22 lines
347 B
C
#ifndef _TOKUWIN_UNISTD_H
|
|
#define _TOKUWIN_UNISTD_H
|
|
#include <io.h>
|
|
#include <stdio.h>
|
|
|
|
int
|
|
ftruncate(int fildes, int64_t offset);
|
|
|
|
int64_t
|
|
pwrite(int fildes, const void *buf, size_t nbyte, int64_t offset);
|
|
|
|
int64_t
|
|
pread(int fildes, void *buf, size_t nbyte, int64_t offset);
|
|
|
|
unsigned int
|
|
sleep(unsigned int);
|
|
|
|
int
|
|
usleep(unsigned int);
|
|
|
|
#endif
|
|
|