diff options
author | Kevin B Kenny <kennykb@acm.org> | 2005-04-12 18:28:51 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2005-04-12 18:28:51 (GMT) |
commit | 864004153d677fa4995a053ea87c11a6c1b6e2ea (patch) | |
tree | f45161dfc0448dcd7f2be8884dfe8e618b02754a /compat | |
parent | 23fb512d90855d03b4419f8e57d13b5bb33dbf29 (diff) | |
download | tcl-864004153d677fa4995a053ea87c11a6c1b6e2ea.zip tcl-864004153d677fa4995a053ea87c11a6c1b6e2ea.tar.gz tcl-864004153d677fa4995a053ea87c11a6c1b6e2ea.tar.bz2 |
added definition of NULL to strstr.c for Bug 1175161
Diffstat (limited to 'compat')
-rw-r--r-- | compat/strstr.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/compat/strstr.c b/compat/strstr.c index c83c209..d6f5cab 100644 --- a/compat/strstr.c +++ b/compat/strstr.c @@ -9,9 +9,14 @@ * 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.3 2002/01/26 01:10:08 dgp Exp $ + * RCS: @(#) $Id: strstr.c,v 1.3.2.1 2005/04/12 18:28:56 kennykb Exp $ */ +#include <tcl.h> +#ifndef NULL +#define NULL 0 +#endif + /* *---------------------------------------------------------------------- * |