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

Undeffing unix.

GCC defines, for historic reasons, unix as a numeric constant.
https://gcc.gnu.org/onlinedocs/cpp/System-specific-Predefined-Macros.html
This commit is contained in:
Maria Matejka 2023-06-05 17:24:49 +02:00
parent 6f9772863c
commit a794b2e8c1

View File

@ -9,6 +9,8 @@
#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"