diff options
author | nijtmans <nijtmans> | 2010-04-29 09:23:57 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-04-29 09:23:57 (GMT) |
commit | 189dc0720d07929d20d63d408619de129f31c478 (patch) | |
tree | a57cd5c0fde46086d5e02bda1ebb52d265eb531c /compat/dlfcn.h | |
parent | dd801c86b1a462d516d4e3b97e459fc41a4be684 (diff) | |
download | tcl-189dc0720d07929d20d63d408619de129f31c478.zip tcl-189dc0720d07929d20d63d408619de129f31c478.tar.gz tcl-189dc0720d07929d20d63d408619de129f31c478.tar.bz2 |
Include "tcl.h", not <tcl.h>,
like everywhere else, to insure
that the version in the Tcl
distribution is used, not some
version from somewhere else.
Diffstat (limited to 'compat/dlfcn.h')
-rw-r--r-- | compat/dlfcn.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/compat/dlfcn.h b/compat/dlfcn.h index ef8ff0c..ce04fb2 100644 --- a/compat/dlfcn.h +++ b/compat/dlfcn.h @@ -17,7 +17,7 @@ * for any results of using the software, alterations are clearly marked * as such, and this notice is not modified. * - * RCS: @(#) $Id: dlfcn.h,v 1.4 2008/12/18 06:40:03 nijtmans Exp $ + * RCS: @(#) $Id: dlfcn.h,v 1.5 2010/04/29 09:23:57 nijtmans Exp $ */ /* @@ -29,9 +29,7 @@ #ifndef __dlfcn_h__ #define __dlfcn_h__ -#ifndef _TCL -#include <tcl.h> -#endif +#include "tcl.h" #ifdef __cplusplus extern "C" { |