Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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_ */