diff options
author | otto <> | 2018-04-07 09:57:08 +0000 |
---|---|---|
committer | otto <> | 2018-04-07 09:57:08 +0000 |
commit | 51c043113484c53de869b645bf4515c05a75e519 (patch) | |
tree | 4af2316fa5983320bd0aabe7cfaeaa269542bd06 /src | |
parent | cdf17c7e9fb97156ce4c38fa1f02f1902ec9ab6c (diff) | |
download | openbsd-51c043113484c53de869b645bf4515c05a75e519.tar.gz openbsd-51c043113484c53de869b645bf4515c05a75e519.tar.bz2 openbsd-51c043113484c53de869b645bf4515c05a75e519.zip |
sys/uio.h is not used anymore
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libc/stdlib/malloc.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/libc/stdlib/malloc.c b/src/lib/libc/stdlib/malloc.c index ff1f59c479..81c30812a4 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.248 2018/03/30 07:23:15 otto Exp $ */ | 1 | /* $OpenBSD: malloc.c,v 1.249 2018/04/07 09:57:08 otto Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2008, 2010, 2011, 2016 Otto Moerbeek <otto@drijf.net> | 3 | * Copyright (c) 2008, 2010, 2011, 2016 Otto Moerbeek <otto@drijf.net> |
4 | * Copyright (c) 2012 Matthew Dempsky <matthew@openbsd.org> | 4 | * Copyright (c) 2012 Matthew Dempsky <matthew@openbsd.org> |
@@ -28,13 +28,12 @@ | |||
28 | #include <sys/types.h> | 28 | #include <sys/types.h> |
29 | #include <sys/queue.h> | 29 | #include <sys/queue.h> |
30 | #include <sys/mman.h> | 30 | #include <sys/mman.h> |
31 | #include <sys/uio.h> | ||
32 | #include <errno.h> | 31 | #include <errno.h> |
33 | #include <stdarg.h> | 32 | #include <stdarg.h> |
34 | #include <stdint.h> | 33 | #include <stdint.h> |
34 | #include <stdio.h> | ||
35 | #include <stdlib.h> | 35 | #include <stdlib.h> |
36 | #include <string.h> | 36 | #include <string.h> |
37 | #include <stdio.h> | ||
38 | #include <unistd.h> | 37 | #include <unistd.h> |
39 | 38 | ||
40 | #ifdef MALLOC_STATS | 39 | #ifdef MALLOC_STATS |