aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2024-07-14 23:03:05 +0100
committerPaul Eggert2024-07-16 15:37:20 -0700
commita4bafce01e605ddcfff7a4de018b50ad96ea6f8a (patch)
treeac50a38214661f551da237ce2d284b944fdaadb6 /src
parent31517e81d0d8562e222d4b0de399915df956099f (diff)
downloademacs-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.c1
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
1001extern void *lisp_malloc_loser;
1001void *lisp_malloc_loser EXTERNALLY_VISIBLE; 1002void *lisp_malloc_loser EXTERNALLY_VISIBLE;
1002#endif 1003#endif
1003 1004