diff options
| author | Eli Zaretskii | 2002-04-16 20:05:08 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2002-04-16 20:05:08 +0000 |
| commit | c42d6dbdbed85d0adc404b847119665c91f62fcf (patch) | |
| tree | 2058078982c7e909bde6209a538f683825a61626 /lib-src | |
| parent | 58db50c3bb902e187b4146809d7c5f2975561886 (diff) | |
| download | emacs-c42d6dbdbed85d0adc404b847119665c91f62fcf.tar.gz emacs-c42d6dbdbed85d0adc404b847119665c91f62fcf.zip | |
Move config.h before the other headers, to prevent compiler warnings
due to redifinition of _FILE_OFFSET_BITS.
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 |