Skip to content

Commit

Permalink
build: fix for 32-bit windows builds on 64-bit windows system
Browse files Browse the repository at this point in the history
Thanks to jon.forums@ for the fix.

Fixes golang#5051.

R=golang-dev, minux.ma
CC=golang-dev
https://golang.org/cl/7813045
  • Loading branch information
rsc committed Mar 15, 2013
1 parent e67f198 commit 0f1b488
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/libc.h
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ extern void flagprint(int);

#ifdef _WIN32

#ifndef _WIN64
#if !defined(_WIN64) && !defined(__MINGW64_VERSION_MAJOR)
struct timespec {
int tv_sec;
long tv_nsec;
Expand Down

0 comments on commit 0f1b488

Please sign in to comment.