CLEANUP: htx: Remove the unsued function htx_add_blk_type_size()
diff --git a/include/common/htx.h b/include/common/htx.h
index 27f0e5e..ba6604b 100644
--- a/include/common/htx.h
+++ b/include/common/htx.h
@@ -243,7 +243,6 @@
 
 struct htx_blk *htx_add_header(struct htx *htx, const struct ist name, const struct ist value);
 struct htx_blk *htx_add_trailer(struct htx *htx, const struct ist name, const struct ist value);
-struct htx_blk *htx_add_blk_type_size(struct htx *htx, enum htx_blk_type type, uint32_t blksz);
 struct htx_blk *htx_add_all_headers(struct htx *htx, const struct http_hdr *hdrs);
 struct htx_blk *htx_add_all_trailers(struct htx *htx, const struct http_hdr *hdrs);
 struct htx_blk *htx_add_endof(struct htx *htx, enum htx_blk_type type);
diff --git a/src/htx.c b/src/htx.c
index c29a66d..bdd10ba 100644
--- a/src/htx.c
+++ b/src/htx.c
@@ -874,22 +874,6 @@
 	return blk;
 }
 
-/* Adds an HTX block of type <type> in <htx>, of size <blksz>. It returns the
- * new block on success. Otherwise, it returns NULL. The caller is responsible
- * for filling the block itself.
- */
-struct htx_blk *htx_add_blk_type_size(struct htx *htx, enum htx_blk_type type, uint32_t blksz)
-{
-	struct htx_blk *blk;
-
-	blk = htx_add_blk(htx, type, blksz);
-	if (!blk)
-		return NULL;
-
-	blk->info += blksz;
-	return blk;
-}
-
 /* Add all headers from the list <hdrs> into the HTX message <htx>, followed by
  * the EOH. On sucess, it returns the last block inserted (the EOH), otherwise
  * NULL is returned. */