commit | 03787a9f481cef2260714311c3d84aa96ab191d9 | [log] [tgz] |
---|---|---|
author | Tom Rini <trini@konsulko.com> | Mon Feb 27 17:08:34 2023 -0500 |
committer | Tom Rini <trini@konsulko.com> | Wed Mar 22 15:22:48 2023 -0400 |
tree | 3a86e7e409f25d5c6da372b4a856c6e5ebe0e657 | |
parent | 98a8df58d7dcb722425bf4efe0e3bd59c51b5ec2 [diff] |
dlmalloc: Fix a warning with clang-15 With clang-15 we now will get warnings such as: warning: a function declaration without a prototype is deprecated in all versions of C [-Wstrict-prototypes] And it is easy enough to address this warning here, as we aren't concerned with re-syncing with an upstream. Signed-off-by: Tom Rini <trini@konsulko.com> Reviewed-by: Simon Glass <sjg@chromium.org>