diff options
author | Kevin B Kenny <kennykb@acm.org> | 2005-04-12 18:32:40 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2005-04-12 18:32:40 (GMT) |
commit | 565bd04328ff6afd8e176982f12ae7e376db8f34 (patch) | |
tree | edb520b0d49a945ff896d9c0b33af4f921e40309 | |
parent | b5e4641f4f3a9c8366548fb49dc3178fb5451768 (diff) | |
download | tcl-565bd04328ff6afd8e176982f12ae7e376db8f34.zip tcl-565bd04328ff6afd8e176982f12ae7e376db8f34.tar.gz tcl-565bd04328ff6afd8e176982f12ae7e376db8f34.tar.bz2 |
added definition of NULL to strstr.c for Bug 1175161
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | compat/strstr.c | 5 |
2 files changed, 10 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2005-04-12 Kevin B. Kenny <kennykb@acm.org> + + * compat/strstr.c: Added default definition of NULL to + accommodate building on systems with badly broken headers. + [Bug #1175161] + 2005-04-11 Donal K. Fellows <donal.k.fellows@manchester.ac.uk> * tools/tclZIC.tcl: Rewrote to take advantage of more features of diff --git a/compat/strstr.c b/compat/strstr.c index d1f8516..151e3f3 100644 --- a/compat/strstr.c +++ b/compat/strstr.c @@ -9,10 +9,13 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: strstr.c,v 1.4 2004/04/06 22:25:48 dgp Exp $ + * RCS: @(#) $Id: strstr.c,v 1.5 2005/04/12 18:32:41 kennykb Exp $ */ #include "tcl.h" +#ifndef NULL +#define NULL 0 +#endif /* *---------------------------------------------------------------------- |