3845fa6e47345243383c415049535bd463986ba8
[pspp-builds.git] / lib / misc / ChangeLog
1 Fri Dec 12 22:59:37 2003  Ben Pfaff  <blp@gnu.org>
2
3         * qsort.c: Removed because it was unused.
4
5         * Makefile.am: Revised accordingly, and simplified because
6         Automake 1.7 is smarter than 1.4 was.   
7         
8 Sun Jan  2 21:35:47 2000  Ben Pfaff  <blp@gnu.org>
9
10         * qsort.c: Change headers.  Fix __attribute__ for gcc 2.7.2.
11
12         * strcasecmp.c: Remove duplicate inclusion of ctype.h.
13
14         * strncasecmp.c: (strncasecmp) Must cast argument of tolower() to
15         unsigned char.
16
17 Sat Jan 23 12:50:16 1999  Ben Pfaff  <blp@gnu.org>
18
19         * strcasecmp.c: (strcasecmp) Fix behavior for zero-length strings.
20         
21 Sun Jul  5 00:15:44 1998  Ben Pfaff  <blp@gnu.org>
22
23         * qsort.c: (blp_quicksort) Add unused qualifier to temp_buf when
24         alloca is in use.
25
26 1998-02-23  Ben Pfaff  <blp@gnu.org>
27
28         * Makefile.am: (EXTRA_DIST) Add strtok_r.c.
29         
30         * strtok_r.c: New file.
31
32 1998-02-16  Ben Pfaff  <blp@gnu.org>
33
34         * memmem.c: Cast void * to char * before dereferencing, in a
35         different place.
36
37 Fri Feb 13 15:35:55 1998  Ben Pfaff  <blp@gnu.org>
38
39         * memmem.c: Cast void * to char * before dereferencing.  Reported
40         by palme@uni-wuppertal.de (Hubert Palme).
41
42 Sun Jan 18 00:30:38 1998  Ben Pfaff  <blp@gnu.org>
43
44         * memmem.c: Fix argument types.
45
46 Sun Oct  5 15:54:37 1997  Ben Pfaff  <blp@gnu.org>
47
48         * Makefile.am: (EXTRA_DIST) Add strerror.c.  From Alexandre Oliva
49         <oliva@dcc.unicamp.br>.
50
51         * strerror.c: New file.  From Alexandre Oliva
52         <oliva@dcc.unicamp.br>.
53
54 Thu Sep 18 21:34:07 1997  Ben Pfaff  <blp@gnu.org>
55
56         * Makefile.am: (libmisc_a_SOURCES) Added getopt.c, getopt1.c.
57         (EXTRA_DIST) Removed getopt.c, getopt1.c.
58
59 Thu Jul 17 01:50:43 1997  Ben Pfaff  <blp@gnu.org>
60
61         * strncasecmp.c: (strncasecmp) Rewritten to fix undefined
62         behavior.
63
64 Fri Jul 11 14:06:04 1997  Ben Pfaff  <blp@gnu.org>
65
66         * getdelim.c: Added in some necessary #include's.
67
68         * getline.c: #include's <config.h>.  Added getdelim() prototype.
69
70         * memmem.c: #include's <stddef.h>.
71         (memmem) `i' now a size_t.  Avoid subtraction of unsigned's.
72
73 Sun Jul  6 19:12:35 1997  Ben Pfaff  <blp@gnu.org>
74
75         * Makefile.am: Fixed INCLUDES to include intl; fixed directories.
76
77 Mon Jun  2 14:22:24 1997  Ben Pfaff  <blp@gnu.org>
78
79         * getopt.c: Marked strings for gettext.
80
81 Fri Apr 18 16:48:41 1997  Ben Pfaff  <blp@gnu.org>
82
83         * Makefile.am: Refers to src/ as include directory instead of
84         include/.
85
86 Fri Apr 18 15:42:22 1997  Ben Pfaff  <blp@gnu.org>
87
88         * Makefile.am: Maintainer-clean Makefile.in.
89         
90 Thu Mar 27 01:11:29 1997  Ben Pfaff  <blp@gnu.org>
91
92         * alloca.c: Only compiled if necessary. 
93
94         * getdelim.c: New file.
95         * getline.c: New file.
96         * memchr.c: New file.
97         * memcpy.c: New file.
98         * memmem.c: New file.
99         * memmove.c: New file.
100         * memset.c: New file.
101         * strcasecmp.c: New file.
102         * strncasecmp.c: New file.
103         * strpbrk.c: New file.
104         * strstr.c: New file.
105         * strtol.c: New file.
106         * strtoul.c: New file.
107         
108 Sun Dec 15 15:32:16 1996  Ben Pfaff  <blp@gnu.org>
109
110         * qsort.c: New file, essentially unchanged from the glibc-1.09
111         distribution.
112
113 Mon Nov 11 15:34:09 1996  Ben Pfaff  <blp@gnu.org>
114
115         * avl.c: (destroy) Format fix.
116         (avl_destroy) Only calls destroy() if the tree has a non-NULL
117         root.
118
119 Thu Nov  7 20:52:28 1996  Ben Pfaff  <blp@gnu.org>
120
121         * avl.h: (force_avl_insert, force_avl_delete) New macros/functions
122         that assure that a node was successfully added/deleted, active
123         only when GLOBAL_DEBUGGING.  Most occurrences of
124         avl_insert/avl_delete changed to use these instead.
125
126         * avl.c: [GLOBAL_DEBUGGING] (force_avl_delete) New function.
127
128 Tue Sep 24 18:39:09 1996  Ben Pfaff  <blp@gnu.org>
129
130         * stpcpy.c: Comment fix.
131
132 Fri Sep 20 22:52:28 1996  Ben Pfaff  <blp@gnu.org>
133
134         * alloca.c: Changed conditions for inclusion.
135
136 Tue Jul 23 21:48:36 1996  Ben Pfaff  <blp@gnu.org>
137
138         * avl.c: Formatting fixes.
139         (balance) Fixed bug introduced in last patchlevel that reversed
140         the truth value returned by final statement.
141         (find) Always returns NULL if end of function reached.
142         (avl_walk) Split into two functions, walk_inorder and
143         walk_preorder.  All callers and callees changed.
144         (avl_sort) New function.
145
146 Fri Jul 19 19:11:13 1996  Ben Pfaff  <blp@gnu.org>
147
148         * avl.h, avl.c: Completely reworked, might as well be considered
149         new files.  All callers, all references to AVL trees changed.
150
151 ----------------------------------------------------------------------
152 Local Variables:
153 mode: change-log
154 version-control: never
155 End: