env.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:0k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * env.c: ARCS environment variable routines.
  3.  *
  4.  * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
  5.  *
  6.  * $Id: env.c,v 1.2 1999/10/09 00:00:57 ralf Exp $
  7.  */
  8. #include <linux/init.h>
  9. #include <linux/kernel.h>
  10. #include <linux/string.h>
  11. #include <asm/sgialib.h>
  12. PCHAR __init
  13. ArcGetEnvironmentVariable(CHAR *name)
  14. {
  15. return romvec->get_evar(name);
  16. }
  17. LONG __init
  18. ArcSetEnvironmentVariable(PCHAR name, PCHAR value)
  19. {
  20. return romvec->set_evar(name, value);
  21. }