Add missing “assert.h” file header inclusion from “nlr.h”
diff --git a/py/nlr.h b/py/nlr.h
index 43a0c4f..83ab251 100644
--- a/py/nlr.h
+++ b/py/nlr.h
@@ -29,6 +29,7 @@
 
 #include <limits.h>
 #include <setjmp.h>
+#include <assert.h>
 
 typedef struct _nlr_buf_t nlr_buf_t;
 struct _nlr_buf_t {