dtksh: remove unused files and functions

This commit is contained in:
Chase
2019-12-15 10:19:37 -06:00
committed by Jon Trulson
parent 6c07a2ae69
commit 3152b0bc4e
26 changed files with 0 additions and 5911 deletions

View File

@@ -66,39 +66,6 @@ env_get(
}
void *
xkhash_init(
int num )
{
return((void *) hashalloc(NULL,0));
}
void
xkhash_override(
Hash_table_t *tbl,
const char *name,
void *val )
{
hashput(tbl, name, val);
}
void *
xkhash_find(
Hash_table_t *tbl,
const char *name )
{
return(hashget(tbl, name));
}
void
xkhash_add(
Hash_table_t *tbl,
const char *name,
char *val )
{
hashput(tbl, name, val);
}
int
ksh_eval(
char *cmd )