diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | backend.c | 4 | ||||
-rw-r--r-- | entity.c | 4 | ||||
-rw-r--r-- | fm.h | 4 | ||||
-rw-r--r-- | hash.c | 4 | ||||
-rw-r--r-- | indep.c | 4 | ||||
-rw-r--r-- | indep.h | 4 | ||||
-rw-r--r-- | matrix.c | 4 | ||||
-rw-r--r-- | textlist.c | 4 |
9 files changed, 23 insertions, 17 deletions
@@ -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> * [w3m-dev 03849] fix no INET6 @@ -7679,4 +7685,4 @@ a * [w3m-dev 03276] compile error on EWS4800 * release-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 $ @@ -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 <string.h> #include <sys/types.h> #include "fm.h" -#include "gc.h" +#include <gc.h> #include "terms.h" @@ -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 <stdio.h> #include "indep.h" #include "Str.h" -#include "gc.h" +#include <gc.h> typedef struct { short ucs; @@ -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 * @@ -36,7 +36,7 @@ #include "ctrlcode.h" #include "html.h" -#include "gc.h" +#include <gc.h> #include "Str.h" #include "form.h" #include "frame.h" @@ -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 "hash.h" -#include "gc.h" +#include <gc.h> static unsigned int hashfunc(char *s) @@ -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 <stdio.h> #include <pwd.h> @@ -7,7 +7,7 @@ #include <stdlib.h> #include "indep.h" #include "Str.h" -#include "gc.h" +#include <gc.h> #include "myctype.h" #include "entity.h" @@ -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 #define INDEP_H -#include "gc.h" +#include <gc.h> #include "Str.h" #include "config.h" @@ -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. * @@ -34,7 +34,7 @@ #include "config.h" #include "matrix.h" -#include "gc.h" +#include <gc.h> /* * Macros from "fm.h". @@ -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 "indep.h" #include "Str.h" -#include "gc.h" +#include <gc.h> /* General doubly linked list */ |