source: trunk/libs/newlib/src/newlib/libc/include/envlock.h @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 350 bytes
Line 
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 __env_lock (struct _reent *reent);
13void __env_unlock (struct _reent *reent);
14
15#endif /* _INCLUDE_ENVLOCK_H_ */
Note: See TracBrowser for help on using the repository browser.