mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
8 lines
265 B
C
8 lines
265 B
C
typedef unsigned long size_t;
|
|
// These are Microsoft routines for stack allocation
|
|
// but should only be treated as such if they are declared
|
|
// in the <malloc.h> header (i.e., this file)
|
|
void *_alloca(size_t sz);
|
|
void *_malloca(size_t sz);
|
|
void _freea(void *ptr);
|