Subversion Repositories Kolibri OS

Rev

Rev 4872 | Blame | Compare with Previous | Last modification | View Log | RSS feed

  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.  
  12. void _EXFUN(__env_lock,(struct _reent *reent));
  13. void _EXFUN(__env_unlock,(struct _reent *reent));
  14.  
  15. #endif /* _INCLUDE_ENVLOCK_H_ */
  16.