diff options
author | Martin Mares <mj@ucw.cz> | 2004-06-05 09:57:49 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2004-06-05 09:57:49 +0000 |
commit | 2f6de49f8c4d9c7ebd12554d386037e5b063beda (patch) | |
tree | 84e8ffc8167899bb9c630c412406945511dfdfd2 /lib/bitops.h | |
parent | 54c411f6afeafb88649c565d252ab0245266eeee (diff) |
Better prototypes.
Diffstat (limited to 'lib/bitops.h')
-rw-r--r-- | lib/bitops.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bitops.h b/lib/bitops.h index 6bfc95ff..1b6dc68e 100644 --- a/lib/bitops.h +++ b/lib/bitops.h @@ -15,5 +15,5 @@ * u32_masklen Inverse operation to u32_mkmask, -1 if not a bitmask. */ -u32 u32_mkmask(unsigned); -int u32_masklen(u32); +u32 u32_mkmask(unsigned n); +int u32_masklen(u32 x); |