diff options
author | deraadt <> | 2025-06-12 16:07:09 +0000 |
---|---|---|
committer | deraadt <> | 2025-06-12 16:07:09 +0000 |
commit | 88ea7e05d0419eb2d0343eddafbd339aceed1d68 (patch) | |
tree | c59cc791c3246f2bea51c6383d9b053857038466 /src | |
parent | b5a647fae341bc81062532b15ab89f2331f1f101 (diff) | |
download | openbsd-88ea7e05d0419eb2d0343eddafbd339aceed1d68.tar.gz openbsd-88ea7e05d0419eb2d0343eddafbd339aceed1d68.tar.bz2 openbsd-88ea7e05d0419eb2d0343eddafbd339aceed1d68.zip |
<uvm/uvmexp.h> is clearly only for VM_MALLOC_CONF, but <sys/sysctl.h> takes
care of doing that include.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libc/stdlib/malloc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/libc/stdlib/malloc.c b/src/lib/libc/stdlib/malloc.c index fa36a3a7f3..c6261d87c5 100644 --- a/src/lib/libc/stdlib/malloc.c +++ b/src/lib/libc/stdlib/malloc.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: malloc.c,v 1.298 2025/05/23 00:40:05 deraadt Exp $ */ | 1 | /* $OpenBSD: malloc.c,v 1.299 2025/06/12 16:07:09 deraadt Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2008, 2010, 2011, 2016, 2023 Otto Moerbeek <otto@drijf.net> | 3 | * Copyright (c) 2008, 2010, 2011, 2016, 2023 Otto Moerbeek <otto@drijf.net> |
4 | * Copyright (c) 2012 Matthew Dempsky <matthew@openbsd.org> | 4 | * Copyright (c) 2012 Matthew Dempsky <matthew@openbsd.org> |
@@ -31,7 +31,6 @@ | |||
31 | #include <sys/queue.h> | 31 | #include <sys/queue.h> |
32 | #include <sys/mman.h> | 32 | #include <sys/mman.h> |
33 | #include <sys/sysctl.h> | 33 | #include <sys/sysctl.h> |
34 | #include <uvm/uvmexp.h> | ||
35 | #include <errno.h> | 34 | #include <errno.h> |
36 | #include <stdarg.h> | 35 | #include <stdarg.h> |
37 | #include <stdint.h> | 36 | #include <stdint.h> |