File: alloca.h

package info (click to toggle)
bird2 2.0.12-5~bpo11%2B1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye-backports
  • size: 5,652 kB
  • sloc: ansic: 67,582; perl: 3,431; sh: 3,265; lex: 887; xml: 494; makefile: 404; python: 123; sed: 13
file content (20 lines) | stat: -rw-r--r-- 362 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 *	BIRD Library -- Alloca.h
 *
 *	(c) 2004 Ondrej Filip <feela@network.cz>
 *
 *	Can be freely distributed and used under the terms of the GNU GPL.
 */

#ifndef _BIRD_ALLOCA_H_
#define _BIRD_ALLOCA_H_

#ifdef HAVE_ALLOCA_H
#include <alloca.h>
#else
#include <stdlib.h>
#endif

#define allocz(len) ({ void *_x = alloca(len); memset(_x, 0, len); _x; })

#endif