You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
350B

  1. /* envlock.h -- header file for env routines. */
  2. #ifndef _INCLUDE_ENVLOCK_H_
  3. #define _INCLUDE_ENVLOCK_H_
  4. #include <_ansi.h>
  5. #include <sys/reent.h>
  6. #define ENV_LOCK __env_lock(reent_ptr)
  7. #define ENV_UNLOCK __env_unlock(reent_ptr)
  8. void __env_lock (struct _reent *reent);
  9. void __env_unlock (struct _reent *reent);
  10. #endif /* _INCLUDE_ENVLOCK_H_ */