Adds missing SEEK_ POSIX constants for FreeRTOS (#20241)

This commit is contained in:
jgirvin-venturi
2022-08-20 05:40:17 +10:00
committed by GitHub
parent b1fe1690c4
commit 7fe6dedb62

View File

@@ -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)