]> git.ipfire.org Git - thirdparty/bird.git/blame - lib/alloca.h
Use IP_PORTRANGE_HIGH for BFD where available
[thirdparty/bird.git] / lib / alloca.h
CommitLineData
0e6eef62 1/*
1bd897dd 2 * BIRD Library -- Alloca.h
0e6eef62 3 *
1bd897dd 4 * (c) 2004 Ondrej Filip <feela@network.cz>
0e6eef62
OF
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
0e6eef62 18#endif