Remove unused imports
This commit is contained in:
parent
66e06ee2fb
commit
2153f7c9b3
|
@ -26,7 +26,6 @@ int main(int argc, char* argv[]) {
|
|||
printf("%s", PORT_ERROR);
|
||||
}
|
||||
get_parts(dest, path_buffer, host_buffer);
|
||||
printf("%s\n%s\n", path_buffer, host_buffer);
|
||||
struct http_message req = build_basic_request("GET", host_buffer, path_buffer, port_num);
|
||||
struct response_info res;
|
||||
enum socket_read_result read_result = send_request(req, &res);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#include "http_types.h"
|
||||
#include <ctype.h>
|
||||
#include <stdbool.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
#include "socket_helper.h"
|
||||
#include <stdbool.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
|
|
Loading…
Reference in a new issue