os/persistentdata/persistentstorage/sqlite3api/TEST/TCL/tcldistribution/mac/tclMacDNR.c
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
/* 
sl@0
     2
 * tclMacDNR.c
sl@0
     3
 *
sl@0
     4
 *	This file actually just includes the file "dnr.c" provided by
sl@0
     5
 *	Apple Computer and redistributed by MetroWerks (and other compiler
sl@0
     6
 *	vendors.)  Unfortunantly, despite various bug reports, dnr.c uses
sl@0
     7
 *	C++ style comments and will not compile under the "ANSI Strict"
sl@0
     8
 *	mode that the rest of Tcl compiles under.  Furthermore, the Apple
sl@0
     9
 *	license prohibits me from redistributing a corrected version of
sl@0
    10
 *	dnr.c.  This file uses a pragma to turn off the Strict ANSI option
sl@0
    11
 *	and then includes the dnr.c file.
sl@0
    12
 *
sl@0
    13
 * Copyright (c) 1997 Sun Microsystems, Inc.
sl@0
    14
 *
sl@0
    15
 * See the file "license.terms" for information on usage and redistribution
sl@0
    16
 * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
sl@0
    17
 *
sl@0
    18
 * RCS: @(#) $Id: tclMacDNR.c,v 1.2 1998/09/14 18:40:04 stanton Exp $
sl@0
    19
 */
sl@0
    20
sl@0
    21
#pragma ANSI_strict off
sl@0
    22
#include <dnr.c>
sl@0
    23
#pragma ANSI_strict reset