tSync tree.h with OpenBSD - dedup - deduplicating backup program
(HTM) git clone git://git.z3bra.org/dedup.git
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 9bafc67e4949776e6cf750585244b54dfbeae09c
(DIR) parent e2132c16e018acb2c10cb95a3c260e763a77c30c
(HTM) Author: sin <sin@2f30.org>
Date: Sat, 27 Apr 2019 19:17:43 +0100
Sync tree.h with OpenBSD
Diffstat:
M tree.h | 12 ------------
1 file changed, 0 insertions(+), 12 deletions(-)
---
(DIR) diff --git a/tree.h b/tree.h
t@@ -27,18 +27,6 @@
#ifndef _SYS_TREE_H_
#define _SYS_TREE_H_
-#ifndef NULL
-#if !defined(__cplusplus)
-#define NULL ((void *)0)
-#elif __cplusplus >= 201103L
-#define NULL nullptr
-#elif defined(__GNUG__)
-#define NULL __null
-#else
-#define NULL 0L
-#endif
-#endif
-
/*
* This file defines data structures for different types of trees:
* splay trees and red-black trees.