From a334e5ef7267195d7ee285c89e9e4fa4d57347da Mon Sep 17 00:00:00 2001 From: Jeff Johnston Date: Thu, 24 Aug 2000 16:11:59 +0000 Subject: 2000-08-23 Werner Almesberger * libc/stdlib/envlock.c: changed documented "__env_lock" and "__env_unlock" prototype from "void *" or "char *" to "struct _reent *" to match real function. Also added include of envlock.h. * libc/stdlib/mlock.c: changed documented "__malloc_lock" and "__malloc_unlock" prototype from "void *" or "char *" to "struct _reent *" to match real function. * libc/stdlib/envlock.h: added "__env_lock" and "__env_unlock" prototypes (for getenv_r.c and setenv_r.c). --- newlib/libc/stdlib/envlock.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'newlib/libc/stdlib/envlock.c') diff --git a/newlib/libc/stdlib/envlock.c b/newlib/libc/stdlib/envlock.c index 85bb868e4..8e55de288 100644 --- a/newlib/libc/stdlib/envlock.c +++ b/newlib/libc/stdlib/envlock.c @@ -9,15 +9,15 @@ INDEX ANSI_SYNOPSIS #include "envlock.h" - void __env_lock (void *<[reent]>); - void __env_unlock (void *<[reent]>); + void __env_lock (struct _reent *<[reent]>); + void __env_unlock (struct _reent *<[reent]>); TRAD_SYNOPSIS void __env_lock(<[reent]>) - char *<[reent]>; + struct _reent *<[reent]>; void __env_unlock(<[reent]>) - char *<[reent]>; + struct _reent *<[reent]>; DESCRIPTION The <> family of routines call these functions when they need @@ -35,6 +35,9 @@ routines must be careful to avoid causing a thread to wait for a lock that it already holds. */ +#include "envlock.h" + + void __env_lock (ptr) struct _reent *ptr; -- cgit v1.2.3