diff options
| author | Vincent Belaïche | 2017-06-23 22:08:10 +0200 |
|---|---|---|
| committer | Vincent Belaïche | 2017-06-23 22:08:10 +0200 |
| commit | 2f943ab169cd6a88474e0e8a67112d3b7a5ff835 (patch) | |
| tree | 2154fc48d875b9fdf247b70214b7092c80c06e77 /lib-src/ebrowse.c | |
| parent | eebb9783e1674732b7c63d50211b524ff0fea7bd (diff) | |
| parent | dfe73cb06f1dff052aff0abe51ced3b097b06340 (diff) | |
| download | emacs-2f943ab169cd6a88474e0e8a67112d3b7a5ff835.tar.gz emacs-2f943ab169cd6a88474e0e8a67112d3b7a5ff835.zip | |
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs
Diffstat (limited to 'lib-src/ebrowse.c')
| -rw-r--r-- | lib-src/ebrowse.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib-src/ebrowse.c b/lib-src/ebrowse.c index 51d181997b1..e77b7c94cca 100644 --- a/lib-src/ebrowse.c +++ b/lib-src/ebrowse.c | |||
| @@ -20,21 +20,21 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 20 | 20 | ||
| 21 | #include <config.h> | 21 | #include <config.h> |
| 22 | #include <stddef.h> | 22 | #include <stddef.h> |
| 23 | #include <stdio.h> | ||
| 24 | #include <stdlib.h> | 23 | #include <stdlib.h> |
| 25 | #include <string.h> | 24 | #include <string.h> |
| 26 | #include <ctype.h> | 25 | #include <ctype.h> |
| 27 | #include <assert.h> | 26 | #include <assert.h> |
| 28 | #include <getopt.h> | 27 | #include <getopt.h> |
| 29 | 28 | ||
| 29 | #include <flexmember.h> | ||
| 30 | #include <min-max.h> | ||
| 31 | #include <unlocked-io.h> | ||
| 32 | |||
| 30 | /* The SunOS compiler doesn't have SEEK_END. */ | 33 | /* The SunOS compiler doesn't have SEEK_END. */ |
| 31 | #ifndef SEEK_END | 34 | #ifndef SEEK_END |
| 32 | #define SEEK_END 2 | 35 | #define SEEK_END 2 |
| 33 | #endif | 36 | #endif |
| 34 | 37 | ||
| 35 | #include <flexmember.h> | ||
| 36 | #include <min-max.h> | ||
| 37 | |||
| 38 | /* Files are read in chunks of this number of bytes. */ | 38 | /* Files are read in chunks of this number of bytes. */ |
| 39 | 39 | ||
| 40 | enum { READ_CHUNK_SIZE = 100 * 1024 }; | 40 | enum { READ_CHUNK_SIZE = 100 * 1024 }; |