update for HEAD-2003021201
[reactos.git] / lib / msvcrt / stdlib / rot.c
index ee6dfe4..cb4bd69 100644 (file)
@@ -9,6 +9,7 @@
  */
 
 #include <msvcrt/stdlib.h>
+#include <msvcrt/crttypes.h>
 
 unsigned int _rotl( unsigned int value, int shift )
 {
@@ -53,4 +54,4 @@ unsigned long _lrotr( unsigned long value, int shift )
        if ( shift > max_bits )
                shift = shift % max_bits;
        return (value >> shift) | (value << (max_bits-shift));
-}
\ No newline at end of file
+}