mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-12-23 10:11:53 +00:00
53e27ec79d
A lib/list.h had circular dependency through include nest/bird.h nest/bird.h requires lib/birdlib.h lib/birdlib.h requires timer.h timer.h requires lib/resource.h lib/resource.h requires lib/list.h
10 lines
151 B
C
10 lines
151 B
C
/*
|
|
* BIRD Library -- NULL
|
|
*
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
*/
|
|
|
|
#ifndef NULL
|
|
#define NULL ((void *) 0)
|
|
#endif
|