diff options
| author | Paul Eggert | 2018-12-02 22:49:09 -0800 |
|---|---|---|
| committer | Paul Eggert | 2018-12-02 23:55:00 -0800 |
| commit | 25a33aa2d173d933af294a7ea130960c720e1be5 (patch) | |
| tree | 553ea1a50c58435fcb158ccf7babcff1fc7156ae /lib | |
| parent | 3e5d7755454bea9b6ffd232b1d115c629cdb193d (diff) | |
| download | emacs-25a33aa2d173d933af294a7ea130960c720e1be5.tar.gz emacs-25a33aa2d173d933af294a7ea130960c720e1be5.zip | |
Update from Gnulib
This incorporates:
2018-11-30 memrchr: port better to clang
2018-11-21 mktime: add libc-config dependency
* build-aux/config.guess, build-aux/config.sub, lib/memrchr.c:
Copy from Gnulib.
* m4/gnulib-comp.m4: Regenerate.
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/memrchr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/memrchr.c b/lib/memrchr.c index 99acfd9c56d..2efc7cb9752 100644 --- a/lib/memrchr.c +++ b/lib/memrchr.c | |||
| @@ -68,7 +68,7 @@ __memrchr (void const *s, int c_in, size_t n) | |||
| 68 | if (*--char_ptr == c) | 68 | if (*--char_ptr == c) |
| 69 | return (void *) char_ptr; | 69 | return (void *) char_ptr; |
| 70 | 70 | ||
| 71 | longword_ptr = (const longword *) char_ptr; | 71 | longword_ptr = (const void *) char_ptr; |
| 72 | 72 | ||
| 73 | /* All these elucidatory comments refer to 4-byte longwords, | 73 | /* All these elucidatory comments refer to 4-byte longwords, |
| 74 | but the theory applies equally well to any size longwords. */ | 74 | but the theory applies equally well to any size longwords. */ |