diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 1998-03-29 19:00:00 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 1998-03-29 19:00:00 -0500 |
commit | af9be28bc2701ea448898282942bd5b957439f18 (patch) | |
tree | 8401b3f99897cbbe4855c7c8b5485a01efa73c59 /WWW/Library/Implementation/HTMLGen.c | |
parent | 43797ce7b89f70182191e7b41521772c7efa2d25 (diff) | |
download | lynx-snapshots-af9be28bc2701ea448898282942bd5b957439f18.tar.gz |
snapshot of project "lynx", label v2-8-1dev_5
Diffstat (limited to 'WWW/Library/Implementation/HTMLGen.c')
-rw-r--r-- | WWW/Library/Implementation/HTMLGen.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/WWW/Library/Implementation/HTMLGen.c b/WWW/Library/Implementation/HTMLGen.c index 1839f3c4..da2b63e5 100644 --- a/WWW/Library/Implementation/HTMLGen.c +++ b/WWW/Library/Implementation/HTMLGen.c @@ -12,23 +12,23 @@ ** which is cleanest. */ -#include "HTUtils.h" -#include "tcp.h" +#include <HTUtils.h> +#include <tcp.h> #define BUFFER_SIZE 200 /* Line buffer attempts to make neat breaks */ #define MAX_CLEANNESS 20 /* Implements: */ -#include "HTMLGen.h" +#include <HTMLGen.h> #include <stdio.h> -#include "HTMLDTD.h" -#include "HTStream.h" -#include "SGML.h" -#include "HTFormat.h" +#include <HTMLDTD.h> +#include <HTStream.h> +#include <SGML.h> +#include <HTFormat.h> -#include "LYLeaks.h" +#include <LYLeaks.h> #define FREE(x) if (x) {free(x); x = NULL;} |