1
1
mirror of https://github.com/rui314/mold.git synced 2024-10-04 00:31:41 +03:00

Add a missing #include for getenv()

This commit is contained in:
Rui Ueyama 2024-06-26 15:10:46 +09:00
parent f60fada438
commit 35d67a3fab

View File

@ -28,6 +28,7 @@ terms of the MIT license. A copy of the license can be found in the file
#include <sys/mman.h> // mmap
#include <unistd.h> // sysconf
#include <fcntl.h> // open, close, read, access
#include <stdlib.h>
#if defined(__linux__)
#include <features.h>