home · contact · privacy
Further improved / shortened comments in windows.h.
[plomrogue] / src / yx_uint16.c
index 6adc034aecc2840f237bf0830de5a40c45a29b8c..e14d16de8b51fd5d57c8cfe1ec52a4f72f7bf173 100644 (file)
@@ -1,8 +1,7 @@
 /* yx_uint16.c */
 
-
-
-#include "yx_uint16.h" /* for uint8_t, uint16_t */
+#include "yx_uint16.h"
+#include <stdint.h> /* for uint8_t, uint16_t */
 
 
 
@@ -12,10 +11,7 @@ extern uint8_t yx_uint16_cmp(struct yx_uint16 * a, struct yx_uint16 * b)
     {
         return 1;
     }
-    else
-    {
-        return 0;
-    }
+    return 0;
 }