diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2021-07-16 15:50:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-16 15:50:02 +0200 |
commit | 96a7f9b31c84f14906b201d5e3b17c93d3878af6 (patch) | |
tree | 490e0e843a7525eb1ef41967be59065e85cfc4d5 /lib/std | |
parent | 089e741ce4cd1249afd518aa30821309f5b2f8e9 (diff) | |
download | Nim-96a7f9b31c84f14906b201d5e3b17c93d3878af6.tar.gz |
deprecate cuchar, don't redefine it (#18505)
Diffstat (limited to 'lib/std')
-rw-r--r-- | lib/std/sysrand.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/sysrand.nim b/lib/std/sysrand.nim index 4c51577ac..75983e3c6 100644 --- a/lib/std/sysrand.nim +++ b/lib/std/sysrand.nim @@ -132,7 +132,7 @@ elif defined(windows): type PVOID = pointer BCRYPT_ALG_HANDLE = PVOID - PUCHAR = ptr cuchar + PUCHAR = ptr uint8 NTSTATUS = clong ULONG = culong |