diff options
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 5 | ||||
| -rw-r--r-- | lib-src/update-game-score.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 1ac735cde90..9bdf8a4fd49 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2002-04-16 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 2 | |||
| 3 | * update-game-score.c: Move config.h before the other headers, to | ||
| 4 | avoid compiler warnings. | ||
| 5 | |||
| 1 | 2002-04-16 Francesco Potorti` <pot@gnu.org> | 6 | 2002-04-16 Francesco Potorti` <pot@gnu.org> |
| 2 | 7 | ||
| 3 | * etags.c (find_entries): Bug fix in list management. | 8 | * etags.c (find_entries): Bug fix in list management. |
diff --git a/lib-src/update-game-score.c b/lib-src/update-game-score.c index 27e0baffe82..110c6a9e605 100644 --- a/lib-src/update-game-score.c +++ b/lib-src/update-game-score.c | |||
| @@ -31,6 +31,8 @@ Boston, MA 02111-1307, USA. */ | |||
| 31 | 31 | ||
| 32 | #define _GNU_SOURCE | 32 | #define _GNU_SOURCE |
| 33 | 33 | ||
| 34 | #include <config.h> | ||
| 35 | |||
| 34 | #include <unistd.h> | 36 | #include <unistd.h> |
| 35 | #include <errno.h> | 37 | #include <errno.h> |
| 36 | #include <string.h> | 38 | #include <string.h> |
| @@ -42,7 +44,6 @@ Boston, MA 02111-1307, USA. */ | |||
| 42 | #include <fcntl.h> | 44 | #include <fcntl.h> |
| 43 | #include <stdarg.h> | 45 | #include <stdarg.h> |
| 44 | #include <sys/stat.h> | 46 | #include <sys/stat.h> |
| 45 | #include <config.h> | ||
| 46 | 47 | ||
| 47 | #define MAX_ATTEMPTS 5 | 48 | #define MAX_ATTEMPTS 5 |
| 48 | #define MAX_SCORES 200 | 49 | #define MAX_SCORES 200 |