summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2006-09-26 14:06:57 (GMT)
committerdgp <dgp@noemail.net>2006-09-26 14:06:57 (GMT)
commitcadd36f2f8db957f8a228ef49a971cb0f4418a13 (patch)
tree6fcd82883a09db577738e5402d39b10e4ce99ae0 /generic
parenta4b585aabbe3df7235ea562d0db03acb445d6ab8 (diff)
downloadtcl-cadd36f2f8db957f8a228ef49a971cb0f4418a13.zip
tcl-cadd36f2f8db957f8a228ef49a971cb0f4418a13.tar.gz
tcl-cadd36f2f8db957f8a228ef49a971cb0f4418a13.tar.bz2
* generic/tcl.h: As 2006-09-22 commit from Donal K. Fellows
demonstrates, "#define NULL 0" is just wrong, and as a quotable chat figure observed, "If NULL isn't defined, we're not using a C compiler." Improper fallback definition of NULL removed. FossilOrigin-Name: 62873cf9a9bf4c79478faa112232ea4ec2af4742
Diffstat (limited to 'generic')
-rw-r--r--generic/tcl.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/generic/tcl.h b/generic/tcl.h
index b19fe11..d3961eb 100644
--- a/generic/tcl.h
+++ b/generic/tcl.h
@@ -13,7 +13,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tcl.h,v 1.153.2.26 2006/08/18 07:45:42 das Exp $
+ * RCS: @(#) $Id: tcl.h,v 1.153.2.27 2006/09/26 14:06:57 dgp Exp $
*/
#ifndef _TCL
@@ -315,9 +315,6 @@ typedef long LONG;
/*
* Miscellaneous declarations.
*/
-#ifndef NULL
-# define NULL 0
-#endif
#ifndef _CLIENTDATA
# ifndef NO_VOID