commit 9bafc67e4949776e6cf750585244b54dfbeae09c
parent e2132c16e018acb2c10cb95a3c260e763a77c30c
Author: sin <sin@2f30.org>
Date: Sat, 27 Apr 2019 19:17:43 +0100
Sync tree.h with OpenBSD
Diffstat:
1 file changed, 0 insertions(+), 12 deletions(-)
diff --git a/tree.h b/tree.h
@@ -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.