ref: d98c59fb9ae60acae66da0198e29ea694b68b184
parent: c9b95709706773f76f841f1857b6ee99a977564c
author: Jean-Marc Valin <jmvalin@amazon.com>
date: Thu May 25 13:30:19 EDT 2023
Add missing #include
--- a/dnn/parse_lpcnet_weights.c
+++ b/dnn/parse_lpcnet_weights.c
@@ -28,11 +28,10 @@
#include "config.h"
#endif
+#include <string.h>
#include "nnet.h"
#define SPARSE_BLOCK_SIZE 32
-
-extern const WeightArray lpcnet_arrays[];
int parse_record(const unsigned char **data, int *len, WeightArray *array) {
WeightHead *h = (WeightHead *)*data;
--
⑨