diff options
author | Elliott Hughes <enh@google.com> | 2013-06-05 01:58:26 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2013-06-05 01:58:26 +0000 |
commit | 4c001859feeda27727917c5bd00338e90b801742 (patch) | |
tree | b9ea7169201627347e3cba4bd94f7410ac84149e /libc/include | |
parent | a24e81efd30d106cdfa6a019acf7c77cd88b40cc (diff) | |
parent | 25a87f7641f066437d15c6d3148d08a6ab9be231 (diff) | |
download | bionic-4c001859feeda27727917c5bd00338e90b801742.zip bionic-4c001859feeda27727917c5bd00338e90b801742.tar.gz bionic-4c001859feeda27727917c5bd00338e90b801742.tar.bz2 |
Merge "Fix declaration of malloc_usable_size()"
Diffstat (limited to 'libc/include')
-rw-r--r-- | libc/include/malloc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/include/malloc.h b/libc/include/malloc.h index 8875e54..eaedc49 100644 --- a/libc/include/malloc.h +++ b/libc/include/malloc.h @@ -33,7 +33,7 @@ extern void* realloc(void* p, size_t byte_count) __wur; extern void free(void* p); extern void* memalign(size_t alignment, size_t byte_count) __mallocfunc __wur; -extern size_t malloc_usable_size(void* p); +extern size_t malloc_usable_size(const void* p); extern void* valloc(size_t byte_count) __mallocfunc __wur; extern void* pvalloc(size_t byte_count) __mallocfunc __wur; |