archie/tcl7.6/unix/dltest/pkgf.c
2024-05-27 16:40:40 +02:00

50 lines
1.3 KiB
C
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* pkgf.c --
*
* This file contains a simple Tcl package "pkgf" that is intended
* for testing the Tcl dynamic loading facilities. Its Init
* procedure returns an error in order to test how this is handled.
*
* Copyright (c) 1995 Sun Microsystems, Inc.
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
* SCCS: @(#) pkgf.c 1.2 96/02/15 12:30:32
*/
#include "tcl.h"
/*
* Prototypes for procedures defined later in this file:
*/
static int Pkgd_SubCmd _ANSI_ARGS_((ClientData clientData,
Tcl_Interp *interp, int argc, char **argv));
static int Pkgd_UnsafeCmd _ANSI_ARGS_((ClientData clientData,
Tcl_Interp *interp, int argc, char **argv));
/*
*----------------------------------------------------------------------
*
* Pkgf_Init --
*
* This is a package initialization procedure, which is called
* by Tcl when this package is to be added to an interpreter.
*
* Results:
* Returns TCL_ERROR and leaves an error message in interp->result.
*
* Side effects:
* None.
*
*----------------------------------------------------------------------
*/
int
Pkgf_Init(interp)
Tcl_Interp *interp; /* Interpreter in which the package is
* to be made available. */
{
return Tcl_Eval(interp, "if 44 {open non_existent}");
}