Remove unused imports

This commit is contained in:
Nick Krichevsky 2018-09-03 15:04:12 -04:00
parent 66e06ee2fb
commit 2153f7c9b3
3 changed files with 0 additions and 3 deletions

View file

@ -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);

View file

@ -1,7 +1,6 @@
#include "http_types.h"
#include <ctype.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

View file

@ -2,7 +2,6 @@
#include "socket_helper.h"
#include <stdbool.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>