]> git.ipfire.org Git - thirdparty/bird.git/blob - lib/alloca.h
Merge branch 'master' into rip-new
[thirdparty/bird.git] / lib / alloca.h
1 /*
2 * BIRD Library -- Alloca.h
3 *
4 * (c) 2004 Ondrej Filip <feela@network.cz>
5 *
6 * Can be freely distributed and used under the terms of the GNU GPL.
7 */
8
9 #ifndef _BIRD_ALLOCA_H_
10 #define _BIRD_ALLOCA_H_
11
12 #ifdef HAVE_ALLOCA_H
13 #include <alloca.h>
14 #else
15 #include <stdlib.h>
16 #endif
17
18 #endif