diff options
| author | Pip Cet | 2024-09-01 15:37:02 +0000 |
|---|---|---|
| committer | Pip Cet | 2024-09-01 15:37:48 +0000 |
| commit | dc2cdd36835cdce9426d0f822590a0d2f47d0bcc (patch) | |
| tree | eaa9b360f60749ff48c832718ab88516cc338d9e /src | |
| parent | 99a03ddb2d43d67577814b96e40ec069739b6421 (diff) | |
| download | emacs-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.c | 1 |
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. */ |