diff options
author | jgirvin-venturi <108651321+jgirvin-venturi@users.noreply.github.com> | 2022-08-20 05:40:17 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-19 15:40:17 -0400 |
commit | 7fe6dedb623b9bc781df9e68b53e354c73034090 (patch) | |
tree | 18d1331182eacbabaee8e9f3c66c4ead02fd5233 /lib | |
parent | b1fe1690c48fc3c24e3db2b2e2d12961f46f36f9 (diff) | |
download | Nim-7fe6dedb623b9bc781df9e68b53e354c73034090.tar.gz |
Adds missing SEEK_ POSIX constants for FreeRTOS (#20241)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/posix/posix_freertos_consts.nim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/posix/posix_freertos_consts.nim b/lib/posix/posix_freertos_consts.nim index ca500534a..0f0fc0aae 100644 --- a/lib/posix/posix_freertos_consts.nim +++ b/lib/posix/posix_freertos_consts.nim @@ -500,3 +500,7 @@ const F_TEST* = cint(3) const F_TLOCK* = cint(2) const F_ULOCK* = cint(0) +# <stdio.h> +const SEEK_SET* = cint(0) +const SEEK_CUR* = cint(1) +const SEEK_END* = cint(2) |