/* * env.c: ARCS environment variable routines. * * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com) * * $Id: env.c,v 1.2 1999/10/09 00:00:57 ralf Exp $ */ #include #include #include #include PCHAR __init ArcGetEnvironmentVariable(CHAR *name) { return romvec->get_evar(name); } LONG __init ArcSetEnvironmentVariable(PCHAR name, PCHAR value) { return romvec->set_evar(name, value); }