os/persistentdata/persistentstorage/sqlite3api/TEST/TCL/tcldistribution/mac/tclMacDNR.c
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/persistentstorage/sqlite3api/TEST/TCL/tcldistribution/mac/tclMacDNR.c	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,23 @@
     1.4 +/* 
     1.5 + * tclMacDNR.c
     1.6 + *
     1.7 + *	This file actually just includes the file "dnr.c" provided by
     1.8 + *	Apple Computer and redistributed by MetroWerks (and other compiler
     1.9 + *	vendors.)  Unfortunantly, despite various bug reports, dnr.c uses
    1.10 + *	C++ style comments and will not compile under the "ANSI Strict"
    1.11 + *	mode that the rest of Tcl compiles under.  Furthermore, the Apple
    1.12 + *	license prohibits me from redistributing a corrected version of
    1.13 + *	dnr.c.  This file uses a pragma to turn off the Strict ANSI option
    1.14 + *	and then includes the dnr.c file.
    1.15 + *
    1.16 + * Copyright (c) 1997 Sun Microsystems, Inc.
    1.17 + *
    1.18 + * See the file "license.terms" for information on usage and redistribution
    1.19 + * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1.20 + *
    1.21 + * RCS: @(#) $Id: tclMacDNR.c,v 1.2 1998/09/14 18:40:04 stanton Exp $
    1.22 + */
    1.23 +
    1.24 +#pragma ANSI_strict off
    1.25 +#include <dnr.c>
    1.26 +#pragma ANSI_strict reset