BUILD: chunk: properly declare pool_head_trash as extern

This one was also declared without the extern modifier in an include
file.

This needs to be backported to 1.9.
diff --git a/include/common/chunk.h b/include/common/chunk.h
index 734e444..a1a3eb7 100644
--- a/include/common/chunk.h
+++ b/include/common/chunk.h
@@ -30,7 +30,7 @@
 #include <common/memory.h>
 
 
-struct pool_head *pool_head_trash;
+extern struct pool_head *pool_head_trash;
 
 /* function prototypes */