9 lines
410 B
Python
9 lines
410 B
Python
from stdint import *
|
|
import t
|
|
|
|
|
|
|
|
def malloc(size: t.CSizeT) -> t.CVoid | t.CPtr | t.State | t.CExtern | t.CExport: pass
|
|
def calloc(nmemb: t.CSizeT, size: t.CSizeT) -> t.CVoid | t.CPtr | t.State | t.CExtern | t.CExport: pass
|
|
def realloc(p: t.CVoid | t.CPtr, size: t.CSizeT) -> t.CVoid | t.CPtr | t.State | t.CExtern | t.CExport: pass
|
|
def free(p: t.CVoid | t.CPtr) -> None | t.State | t.CExtern | t.CExport: pass |