0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-11-08 12:18:42 +00:00
bird/nest/bird.h
Maria Matejka a794b2e8c1 Undeffing unix.
GCC defines, for historic reasons, unix as a numeric constant.
https://gcc.gnu.org/onlinedocs/cpp/System-specific-Predefined-Macros.html
2023-06-05 18:14:30 +02:00

20 lines
374 B
C

/*
* BIRD Internet Routing Daemon -- Basic Declarations
*
* (c) 1998--2000 Martin Mares <mj@ucw.cz>
*
* Can be freely distributed and used under the terms of the GNU GPL.
*/
#ifndef _BIRD_BIRD_H_
#define _BIRD_BIRD_H_
#undef unix /* An unneeded ancient C quirk */
#include "sysdep/config.h"
#include "lib/birdlib.h"
#include "lib/ip.h"
#include "lib/net.h"
#endif