• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-armeabi-2011.09/arm-none-eabi/include/
1/* envlock.h -- header file for env routines.  */
2
3#ifndef _INCLUDE_ENVLOCK_H_
4#define _INCLUDE_ENVLOCK_H_
5
6#include <_ansi.h>
7#include <sys/reent.h>
8
9#define ENV_LOCK __env_lock(reent_ptr)
10#define ENV_UNLOCK __env_unlock(reent_ptr)
11
12void _EXFUN(__env_lock,(struct _reent *reent));
13void _EXFUN(__env_unlock,(struct _reent *reent));
14
15#endif /* _INCLUDE_ENVLOCK_H_ */
16