mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
build: fixes for mingw-w64
R=rsc CC=golang-dev https://golang.org/cl/4742042
This commit is contained in:
parent
0871af25aa
commit
ee14fbdf34
3 changed files with 8 additions and 4 deletions
|
|
@ -292,16 +292,20 @@ extern char* getgoroot(void);
|
|||
extern char* getgoversion(void);
|
||||
|
||||
#ifdef _WIN32
|
||||
|
||||
#ifndef _WIN64
|
||||
struct timespec {
|
||||
int tv_sec;
|
||||
long tv_nsec;
|
||||
};
|
||||
#define execv(prog, argv) execv(prog, (const char* const*)(argv))
|
||||
#define execvp(prog, argv) execvp(prog, (const char**)(argv))
|
||||
#endif
|
||||
|
||||
extern int nanosleep(const struct timespec *rqtp, struct timespec *rmtp);
|
||||
extern int fork(void);
|
||||
extern int pread(int fd, void *buf, int n, int off);
|
||||
extern int pwrite(int fd, void *buf, int n, int off);
|
||||
#define execv(prog, argv) execv(prog, (const char* const*)(argv))
|
||||
#define execvp(prog, argv) execvp(prog, (const char**)(argv))
|
||||
#define lseek(fd, n, base) _lseeki64(fd, n, base)
|
||||
#define mkdir(path, perm) mkdir(path)
|
||||
#define pipe(fd) _pipe(fd, 512, O_BINARY)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue