diff options
author | Martin Mares <mj@ucw.cz> | 2004-06-05 11:57:49 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2004-06-05 11:57:49 +0200 |
commit | 2f6de49f8c4d9c7ebd12554d386037e5b063beda (patch) | |
tree | 84e8ffc8167899bb9c630c412406945511dfdfd2 /lib | |
parent | 54c411f6afeafb88649c565d252ab0245266eeee (diff) | |
download | bird-2f6de49f8c4d9c7ebd12554d386037e5b063beda.tar bird-2f6de49f8c4d9c7ebd12554d386037e5b063beda.zip |
Better prototypes.
Diffstat (limited to 'lib')
-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 6bfc95f..1b6dc68 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); |