0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-09-16 18:35:19 +00:00
bird/lib/alloca.h

21 lines
362 B
C
Raw Permalink Normal View History

2004-05-31 17:07:05 +00:00
/*
2004-05-31 17:27:21 +00:00
* BIRD Library -- Alloca.h
2004-05-31 17:07:05 +00:00
*
2004-05-31 17:27:21 +00:00
* (c) 2004 Ondrej Filip <feela@network.cz>
2004-05-31 17:07:05 +00:00
*
* 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
2017-02-20 01:26:45 +00:00
#define allocz(len) ({ void *_x = alloca(len); memset(_x, 0, len); _x; })
2004-05-31 17:07:05 +00:00
#endif