sl@0: /* sl@0: * tclMacDNR.c sl@0: * sl@0: * This file actually just includes the file "dnr.c" provided by sl@0: * Apple Computer and redistributed by MetroWerks (and other compiler sl@0: * vendors.) Unfortunantly, despite various bug reports, dnr.c uses sl@0: * C++ style comments and will not compile under the "ANSI Strict" sl@0: * mode that the rest of Tcl compiles under. Furthermore, the Apple sl@0: * license prohibits me from redistributing a corrected version of sl@0: * dnr.c. This file uses a pragma to turn off the Strict ANSI option sl@0: * and then includes the dnr.c file. sl@0: * sl@0: * Copyright (c) 1997 Sun Microsystems, Inc. sl@0: * sl@0: * See the file "license.terms" for information on usage and redistribution sl@0: * of this file, and for a DISCLAIMER OF ALL WARRANTIES. sl@0: * sl@0: * RCS: @(#) $Id: tclMacDNR.c,v 1.2 1998/09/14 18:40:04 stanton Exp $ sl@0: */ sl@0: sl@0: #pragma ANSI_strict off sl@0: #include sl@0: #pragma ANSI_strict reset