Lint fixes.

This commit is contained in:
Stephen Heumann 2018-08-01 18:24:43 -05:00
parent a485918d44
commit a66b69154e
3 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,6 @@
#include <tcpip.h>
#include <misctool.h>
#include <orca.h>
#include "hostname.h"
#define DNR_WAIT_TIME 15 /*seconds*/

3
main.c
View File

@ -10,6 +10,7 @@
#include "session.h"
#include "seturl.h"
#include "hostname.h"
#include "tcpconnection.h"
/*
http://archive.org/download/a2gs_System_1.0_1986_Apple_FW/System_1.0_1986_Apple_FW.2mg
@ -57,7 +58,7 @@ int main(int argc, char **argv) {
putchar(ch);
}
printf("=========\n");
printf("\n", i);
printf("\n");
enum RequestResult requestResult;
requestResult = DoHTTPRequest(&sess, startByte, startByte + 511);

View File

@ -1,5 +1,7 @@
#include <types.h>
#include <errno.h>
#include <string.h>
#include <stdlib.h>
#include "session.h"
#include "urlparser.h"
#include "strcasecmp.h"