File: alloca.h

package info (click to toggle)
shim 15.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 15,124 kB
  • sloc: ansic: 168,639; asm: 1,714; sh: 1,294; makefile: 1,151; python: 284
file content (16 lines) | stat: -rw-r--r-- 494 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: BSD-2-Clause-Patent
#ifdef SHIM_UNIT_TEST
#include_next <alloca.h>
#else
#ifndef _ALLOCA_H
#define _ALLOCA_H

#include <builtins_begin_.h>
mkbi1_(void *, alloca, size_t, size)
#define alloca_with_align(size, alignment) __builtin_alloca_with_align(size, alignment)
#define alloca_with_align_and_max(size, alignment, max) __builtin_alloca_with_align_and_max(size, alignment, max)
#include <builtins_end_.h>

#endif /* !_ALLOCA_H */
#endif
// vim:fenc=utf-8:tw=75:noet