diff options
author | malc <av1474@comtv.ru> | 2009-09-12 02:39:29 +0400 |
---|---|---|
committer | malc <av1474@comtv.ru> | 2009-09-12 02:50:58 +0400 |
commit | 057fa65c5ddf915d73b69964f32fc854c914efd4 (patch) | |
tree | a8a756cfbf97cfc13d896efa7c49a6167b1bbfeb /audio/audio.h | |
parent | 8b438ba3f567a5d3ebd61a4e9b36971877e87671 (diff) | |
download | qemu-057fa65c5ddf915d73b69964f32fc854c914efd4.tar.gz qemu-057fa65c5ddf915d73b69964f32fc854c914efd4.tar.bz2 qemu-057fa65c5ddf915d73b69964f32fc854c914efd4.zip |
audio: remove lsbindex/popcount in favour of host-utils's ctz32
Signed-off-by: malc <av1474@comtv.ru>
Diffstat (limited to 'audio/audio.h')
-rw-r--r-- | audio/audio.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/audio/audio.h b/audio/audio.h index fda2af3424..dec86e5f77 100644 --- a/audio/audio.h +++ b/audio/audio.h @@ -147,9 +147,6 @@ static inline void *advance (void *p, int incr) return (d + incr); } -uint32_t popcount (uint32_t u); -uint32_t lsbindex (uint32_t u); - #ifdef __GNUC__ #define audio_MIN(a, b) ( __extension__ ({ \ __typeof (a) ta = a; \ |