Add #endif comments for #endif more than 10 lines from #if / #else
diff --git a/include/polarssl/bignum.h b/include/polarssl/bignum.h
index ecc4a13..3feee8f 100644
--- a/include/polarssl/bignum.h
+++ b/include/polarssl/bignum.h
@@ -167,8 +167,8 @@
            #define POLARSSL_HAVE_UDBL
          #endif
        #endif
-    #endif
-  #endif
+    #endif /* !POLARSSL_HAVE_INT32 && __GNUC__ && 64-bit platform */
+  #endif /* !POLARSSL_HAVE_INT32 && _MSC_VER && _M_AMD64 */
 #endif /* POLARSSL_HAVE_INT16 */
 #endif /* POLARSSL_HAVE_INT8  */
 
diff --git a/include/polarssl/ecp.h b/include/polarssl/ecp.h
index 333986d..7192f1e 100644
--- a/include/polarssl/ecp.h
+++ b/include/polarssl/ecp.h
@@ -208,7 +208,7 @@
  *      192       640     640     633     587     476
  */
 #define POLARSSL_ECP_WINDOW_SIZE    6   /**< Maximum window size used */
-#endif
+#endif /* POLARSSL_ECP_WINDOW_SIZE */
 
 #if !defined(POLARSSL_ECP_FIXED_POINT_OPTIM)
 /*
@@ -223,7 +223,7 @@
  * Change this value to 0 to reduce peak memory usage.
  */
 #define POLARSSL_ECP_FIXED_POINT_OPTIM  1   /**< Enable fixed-point speed-up */
-#endif
+#endif /* POLARSSL_ECP_FIXED_POINT_OPTIM */
 
 /* \} name SECTION: Module settings */