mariadb/windows/unistd.h

40 lines
562 B
C
Raw Normal View History

#ifndef _TOKUWIN_UNISTD_H
#define _TOKUWIN_UNISTD_H
#if defined(__cplusplus)
extern "C" {
#endif
#include <io.h>
#include <stdio.h>
#include <stdint.h>
int fsync(int fildes);
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);
int
getopt(int argc, char *const argv[], const char *optstring);
extern char *optarg;
#if defined(__cplusplus)
};
#endif
#endif