diff options
author | Christopher Faylor <me@cgf.cx> | 2002-11-13 01:20:31 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-11-13 01:20:31 +0000 |
commit | e91ec2e3e6fbe82b6b481305a15aec370006baf0 (patch) | |
tree | be7560643b8217bebc95d6516768a6cf5a206619 /newlib/libc/stdlib/mlock.c | |
parent | e0900ffdb5a77455dcca22e60b69dc803c7d42e0 (diff) | |
download | newlib-e91ec2e3e6fbe82b6b481305a15aec370006baf0.zip newlib-e91ec2e3e6fbe82b6b481305a15aec370006baf0.tar.gz newlib-e91ec2e3e6fbe82b6b481305a15aec370006baf0.tar.bz2 |
* libc/stdlib/malign.c: Don't compile if MALLOC_PROVIDED.
* libc/stdlib/mlock.c: Ditto.
* libc/stdlib/msize.c: Ditto.
* libc/stdlib/msize.c: Ditto.
* libc/stdlib/mtrim.c: Ditto.
* libc/stdlib/valloc.c: Ditto.
Diffstat (limited to 'newlib/libc/stdlib/mlock.c')
-rw-r--r-- | newlib/libc/stdlib/mlock.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/newlib/libc/stdlib/mlock.c b/newlib/libc/stdlib/mlock.c index 485d0d5..c603fbc 100644 --- a/newlib/libc/stdlib/mlock.c +++ b/newlib/libc/stdlib/mlock.c @@ -1,3 +1,4 @@ +#ifndef MALLOC_PROVIDED /* FUNCTION <<__malloc_lock>>, <<__malloc_unlock>>--lock malloc pool @@ -48,3 +49,4 @@ __malloc_unlock (ptr) struct _reent *ptr; { } +#endif |