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