diff options
author | Dan Albert <danalbert@google.com> | 2014-06-14 01:04:31 +0000 |
---|---|---|
committer | Dan Albert <danalbert@google.com> | 2014-06-14 01:04:31 +0000 |
commit | e5fdaa4f9d102461a4d8a865e6ca84666893b9e7 (patch) | |
tree | c17c2b67e2f12161e67f9b337c9cdc11bd8eab5f /libc/include/malloc.h | |
parent | a04d2bc28e7d7fcaf34ad71e4a6608a13cf84197 (diff) | |
download | android_bionic-e5fdaa4f9d102461a4d8a865e6ca84666893b9e7.tar.gz android_bionic-e5fdaa4f9d102461a4d8a865e6ca84666893b9e7.tar.bz2 android_bionic-e5fdaa4f9d102461a4d8a865e6ca84666893b9e7.zip |
Revert "Backing this one out since the counterpart needs to be sent upstream."
This reverts commit a04d2bc28e7d7fcaf34ad71e4a6608a13cf84197.
Change-Id: I1b49165ca5d4bafdba7948818256a6167a363aca
Diffstat (limited to 'libc/include/malloc.h')
-rw-r--r-- | libc/include/malloc.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libc/include/malloc.h b/libc/include/malloc.h index 9a4e32472..e6ea27606 100644 --- a/libc/include/malloc.h +++ b/libc/include/malloc.h @@ -35,9 +35,6 @@ extern void free(void* p); extern void* memalign(size_t alignment, size_t byte_count) __mallocfunc __wur __attribute__((alloc_size(2))); extern size_t malloc_usable_size(const void* p); -extern void* valloc(size_t byte_count) __mallocfunc __wur __attribute__((alloc_size(1))); -extern void* pvalloc(size_t byte_count) __mallocfunc __wur __attribute__((alloc_size(1))); - #ifndef STRUCT_MALLINFO_DECLARED #define STRUCT_MALLINFO_DECLARED 1 struct mallinfo { |