From a3279bc1091bfa3ad46fedbb80fcabe5a654b3f4 Mon Sep 17 00:00:00 2001 From: Daniel McCarney Date: Mon, 9 Dec 2024 16:51:16 -0500 Subject: [PATCH] tests: remove unused write_all header def There was no `write_all()` defined in `common.c`, so the `common.h` prototype wasn't worth keeping. --- tests/common.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/common.h b/tests/common.h index 1a8cc76b..e613ac63 100644 --- a/tests/common.h +++ b/tests/common.h @@ -64,8 +64,6 @@ extern const char *programname; void print_error(const char *prefix, rustls_result rr); -int write_all(int fd, const char *buf, int n); - /* Make a socket nonblocking. */ demo_result nonblock(int sockfd);