BR 3392443: Missing prototype of alignlog2_64

The prototype:

extern int const_func alignlog2_64(uint64_t v);

were missed in ilog2.h
After adding, the build proceeds successfully.

Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
This commit is contained in:
Andrei Vukolov 2017-10-11 12:19:17 -07:00 committed by H. Peter Anvin
parent 0a126062fb
commit 120819e73c

View File

@ -48,6 +48,7 @@ extern int const_func ilog2_32(uint32_t v);
extern int const_func ilog2_64(uint64_t v);
extern int const_func ilog2_64(uint64_t vv);
extern int const_func alignlog2_32(uint32_t v);
extern int const_func alignlog2_64(uint64_t v);
#endif
#ifdef extern_inline