diff options
| author | Paul Eggert | 2024-07-14 23:03:05 +0100 |
|---|---|---|
| committer | Paul Eggert | 2024-07-16 15:37:20 -0700 |
| commit | a4bafce01e605ddcfff7a4de018b50ad96ea6f8a (patch) | |
| tree | ac50a38214661f551da237ce2d284b944fdaadb6 /src | |
| parent | 31517e81d0d8562e222d4b0de399915df956099f (diff) | |
| download | emacs-a4bafce01e605ddcfff7a4de018b50ad96ea6f8a.tar.gz emacs-a4bafce01e605ddcfff7a4de018b50ad96ea6f8a.zip | |
Pacify -Wmissing-variable-declarations for lisp_malloc_user
* src/alloc.c (lisp_malloc_user) [!USE_LSB_TAG]:
Provide extern decl.
Diffstat (limited to 'src')
| -rw-r--r-- | src/alloc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/alloc.c b/src/alloc.c index 666f77bfce1..37069ee4c9e 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -998,6 +998,7 @@ record_xmalloc (size_t size) | |||
| 998 | allocated memory block (for strings, for conses, ...). */ | 998 | allocated memory block (for strings, for conses, ...). */ |
| 999 | 999 | ||
| 1000 | #if ! USE_LSB_TAG | 1000 | #if ! USE_LSB_TAG |
| 1001 | extern void *lisp_malloc_loser; | ||
| 1001 | void *lisp_malloc_loser EXTERNALLY_VISIBLE; | 1002 | void *lisp_malloc_loser EXTERNALLY_VISIBLE; |
| 1002 | #endif | 1003 | #endif |
| 1003 | 1004 | ||