diff options
| -rw-r--r-- | CHANGES | 2 | ||||
| -rwxr-xr-x | Nt/386/include/lib9.h | 2 | ||||
| -rw-r--r-- | emu/Nt/ie-os.c | 2 | ||||
| -rw-r--r-- | emu/Nt/os.c | 2 | ||||
| -rw-r--r-- | include/version.h | 2 |
5 files changed, 6 insertions, 4 deletions
@@ -1,3 +1,5 @@ +20080530 + issue 91: _declspec changed to __declspec in Nt files 20080529 limbo/stubs.c: allow pick adt types 20080528 diff --git a/Nt/386/include/lib9.h b/Nt/386/include/lib9.h index 4bbb8e5d..7b723c5f 100755 --- a/Nt/386/include/lib9.h +++ b/Nt/386/include/lib9.h @@ -479,7 +479,7 @@ struct FPU extern void sleep(int); /* Set up private thread space */ -extern _declspec(thread) Proc* up; +extern __declspec(thread) Proc* up; #define Sleep NTsleep typedef jmp_buf osjmpbuf; diff --git a/emu/Nt/ie-os.c b/emu/Nt/ie-os.c index 39898d0f..f2e559ca 100644 --- a/emu/Nt/ie-os.c +++ b/emu/Nt/ie-os.c @@ -34,7 +34,7 @@ static ulong erendezvous(void*, ulong); char* runestoutf(char*, Rune*, int); int runescmp(Rune*, Rune*); -_declspec(thread) Proc *up; +__declspec(thread) Proc *up; HANDLE ntfd2h(int); int nth2fd(HANDLE); diff --git a/emu/Nt/os.c b/emu/Nt/os.c index 3d60de8c..9bf6736a 100644 --- a/emu/Nt/os.c +++ b/emu/Nt/os.c @@ -32,7 +32,7 @@ static int sleepers = 0; char* runestoutf(char*, Rune*, int); int runescmp(Rune*, Rune*); -_declspec(thread) Proc *up; +__declspec(thread) Proc *up; HANDLE ntfd2h(int); int nth2fd(HANDLE); diff --git a/include/version.h b/include/version.h index 7d9fa0c9..d77917dd 100644 --- a/include/version.h +++ b/include/version.h @@ -1 +1 @@ -#define VERSION "Fourth Edition (20080529)" +#define VERSION "Fourth Edition (20080530)" |
