]> the.earth.li Git - onak.git/blobdiff - bithelp.h
cscvs to tla changeset 120
[onak.git] / bithelp.h
index ebb057fd3ca4bad27c8bfd3397a3f67b08cb703e..76324b44b4e734730cf4a9fe7badd8b2e3cf87b2 100644 (file)
--- a/bithelp.h
+++ b/bithelp.h
@@ -16,6 +16,8 @@
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
+ *
+ * $Id: bithelp.h,v 1.4 2003/10/04 10:21:40 noodles Exp $
  */
 
 #ifndef __BITHELP_H__
@@ -26,8 +28,7 @@
  *     @x: The integer to rotate.
  *     @n: The number of bytes to rotate it by.
  */
-static inline unsigned int
-rol(int x, int n)
+static inline unsigned int rol(unsigned int x, int n)
 {
        __asm__("roll %%cl,%0"
                :"=r" (x)