aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPip Cet2024-09-01 15:37:02 +0000
committerPip Cet2024-09-01 15:37:48 +0000
commitdc2cdd36835cdce9426d0f822590a0d2f47d0bcc (patch)
treeeaa9b360f60749ff48c832718ab88516cc338d9e /src
parent99a03ddb2d43d67577814b96e40ec069739b6421 (diff)
downloademacs-dc2cdd36835cdce9426d0f822590a0d2f47d0bcc.tar.gz
emacs-dc2cdd36835cdce9426d0f822590a0d2f47d0bcc.zip
Explicitly include stdlib.h in src/image.c (Bug#72929)
* src/image.c: Add include.
Diffstat (limited to 'src')
-rw-r--r--src/image.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/image.c b/src/image.c
index 41eeebff36e..34936977a40 100644
--- a/src/image.c
+++ b/src/image.c
@@ -23,6 +23,7 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
23#include <fcntl.h> 23#include <fcntl.h>
24#include <math.h> 24#include <math.h>
25#include <unistd.h> 25#include <unistd.h>
26#include <stdlib.h>
26 27
27/* Include this before including <setjmp.h> to work around bugs with 28/* Include this before including <setjmp.h> to work around bugs with
28 older libpng; see Bug#17429. */ 29 older libpng; see Bug#17429. */