[w3m-dev 03856] <gc.h>

* backend.c entity.c fm.h hash.c indep.c indep.h matrix.c
  textlist.c: s/"gc.h"/<gc.h>/
From: Fumitoshi UKAI  <ukai@debian.or.jp>
This commit is contained in:
Fumitoshi UKAI
2003-04-07 16:27:09 +00:00
parent 5d0bedb68b
commit bd7c73b8f9
9 changed files with 23 additions and 17 deletions

View File

@@ -1,3 +1,9 @@
2003-04-08 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 03856] <gc.h>
* backend.c entity.c fm.h hash.c indep.c indep.h matrix.c
textlist.c: s/"gc.h"/<gc.h>/
2003-04-08 ABE Yuji <cbo46560@pop12.odn.ne.jp> 2003-04-08 ABE Yuji <cbo46560@pop12.odn.ne.jp>
* [w3m-dev 03849] fix no INET6 * [w3m-dev 03849] fix no INET6
@@ -7679,4 +7685,4 @@ a * [w3m-dev 03276] compile error on EWS4800
* release-0-2-1 * release-0-2-1
* import w3m-0.2.1 * import w3m-0.2.1
$Id: ChangeLog,v 1.814 2003/04/07 15:26:10 ukai Exp $ $Id: ChangeLog,v 1.815 2003/04/07 16:27:09 ukai Exp $

View File

@@ -1,9 +1,9 @@
/* $Id: backend.c,v 1.11 2003/01/23 18:37:20 ukai Exp $ */ /* $Id: backend.c,v 1.12 2003/04/07 16:27:09 ukai Exp $ */
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <sys/types.h> #include <sys/types.h>
#include "fm.h" #include "fm.h"
#include "gc.h" #include <gc.h>
#include "terms.h" #include "terms.h"

View File

@@ -1,9 +1,9 @@
/* $Id: entity.c,v 1.3 2001/11/24 02:01:26 ukai Exp $ */ /* $Id: entity.c,v 1.4 2003/04/07 16:27:10 ukai Exp $ */
#include "fm.h" #include "fm.h"
#include <stdio.h> #include <stdio.h>
#include "indep.h" #include "indep.h"
#include "Str.h" #include "Str.h"
#include "gc.h" #include <gc.h>
typedef struct { typedef struct {
short ucs; short ucs;

4
fm.h
View File

@@ -1,4 +1,4 @@
/* $Id: fm.h,v 1.114 2003/04/06 16:27:54 ukai Exp $ */ /* $Id: fm.h,v 1.115 2003/04/07 16:27:10 ukai Exp $ */
/* /*
* w3m: WWW wo Miru utility * w3m: WWW wo Miru utility
* *
@@ -36,7 +36,7 @@
#include "ctrlcode.h" #include "ctrlcode.h"
#include "html.h" #include "html.h"
#include "gc.h" #include <gc.h>
#include "Str.h" #include "Str.h"
#include "form.h" #include "form.h"
#include "frame.h" #include "frame.h"

4
hash.c
View File

@@ -1,7 +1,7 @@
/* $Id: hash.c,v 1.4 2001/12/10 17:02:44 ukai Exp $ */ /* $Id: hash.c,v 1.5 2003/04/07 16:27:10 ukai Exp $ */
#include <string.h> #include <string.h>
#include "hash.h" #include "hash.h"
#include "gc.h" #include <gc.h>
static unsigned int static unsigned int
hashfunc(char *s) hashfunc(char *s)

View File

@@ -1,4 +1,4 @@
/* $Id: indep.c,v 1.32 2003/02/05 16:45:08 ukai Exp $ */ /* $Id: indep.c,v 1.33 2003/04/07 16:27:10 ukai Exp $ */
#include "fm.h" #include "fm.h"
#include <stdio.h> #include <stdio.h>
#include <pwd.h> #include <pwd.h>
@@ -7,7 +7,7 @@
#include <stdlib.h> #include <stdlib.h>
#include "indep.h" #include "indep.h"
#include "Str.h" #include "Str.h"
#include "gc.h" #include <gc.h>
#include "myctype.h" #include "myctype.h"
#include "entity.h" #include "entity.h"

View File

@@ -1,7 +1,7 @@
/* $Id: indep.h,v 1.13 2003/02/05 16:43:57 ukai Exp $ */ /* $Id: indep.h,v 1.14 2003/04/07 16:27:10 ukai Exp $ */
#ifndef INDEP_H #ifndef INDEP_H
#define INDEP_H #define INDEP_H
#include "gc.h" #include <gc.h>
#include "Str.h" #include "Str.h"
#include "config.h" #include "config.h"

View File

@@ -1,4 +1,4 @@
/* $Id: matrix.c,v 1.7 2002/07/18 14:59:02 ukai Exp $ */ /* $Id: matrix.c,v 1.8 2003/04/07 16:27:10 ukai Exp $ */
/* /*
* matrix.h, matrix.c: Liner equation solver using LU decomposition. * matrix.h, matrix.c: Liner equation solver using LU decomposition.
* *
@@ -34,7 +34,7 @@
#include "config.h" #include "config.h"
#include "matrix.h" #include "matrix.h"
#include "gc.h" #include <gc.h>
/* /*
* Macros from "fm.h". * Macros from "fm.h".

View File

@@ -1,8 +1,8 @@
/* $Id: textlist.c,v 1.5 2002/09/24 16:35:02 ukai Exp $ */ /* $Id: textlist.c,v 1.6 2003/04/07 16:27:11 ukai Exp $ */
#include "textlist.h" #include "textlist.h"
#include "indep.h" #include "indep.h"
#include "Str.h" #include "Str.h"
#include "gc.h" #include <gc.h>
/* General doubly linked list */ /* General doubly linked list */