21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
* NeXTs rld_* dynamic loading. This file provided by Pedja Bogdanovich.
*/
#include "tclInt.h"
#include <mach-o/rld.h>
#include <streams/streams.h>
/*
* Static procedures defined within this file.
*/
static void * FindSymbol(Tcl_Interp *interp,
Tcl_LoadHandle loadHandle, const char *symbol);
static void UnloadFile(Tcl_LoadHandle loadHandle);
|
<
|
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
* NeXTs rld_* dynamic loading. This file provided by Pedja Bogdanovich.
*/
#include "tclInt.h"
#include <mach-o/rld.h>
#include <streams/streams.h>
/*
* Static procedures defined within this file.
*/
static void * FindSymbol(Tcl_Interp *interp,
Tcl_LoadHandle loadHandle, const char *symbol);
static void UnloadFile(Tcl_LoadHandle loadHandle);
|