/***********************************************************************
* *
* This software is part of the ast package *
* Copyright (c) 1997-2011 AT&T Intellectual Property *
* and is licensed under the *
* Eclipse Public License, Version 1.0 *
* by AT&T Intellectual Property *
* *
* A copy of the License is available at *
* (with md5 checksum b35adb5213ca9657e911e9befb180842) *
* *
* Information and Software Systems Research *
* AT&T Research *
* Florham Park NJ *
* *
* Glenn Fowler <gsf@research.att.com> *
* *
***********************************************************************/
#pragma prototyped
/*
* Glenn Fowler
* at&t research
*/
#include "dlllib.h"
#if 0
/*
* dlopen() wrapper that properly initializes LIBPATH
* with the path of the dll to be opened
*
* 2009-04-15 -- if ld.so re-checked the env this would work ...
*/
void*
{
void* dll;
char* olibpath;
char* path;
char* oenv;
char* nenv[2];
char* dir;
char* base;
int len;
if (!environ)
{
}
{
}
else
{
dir = "./";
len = 2;
}
path = sfprints("%-.*s%s%c%s=%-.*s%s%s", len, dir, base, 0, info->env, len, dir, olibpath ? ":" : "", olibpath ? olibpath : "");
environ = 0;
else
return dll;
}
#else
/*
* dlopen() wrapper -- waiting for prestidigitaions
*/
void*
{
}
#endif