mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-01-18 16:25:05 +08:00
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:
parent
0a126062fb
commit
120819e73c
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user