diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2018-04-07 09:57:09 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2018-04-07 09:57:09 +0000 |
commit | 3512c71750cb4e2e7bf97c3bd8d34d06b92d621b (patch) | |
tree | fdd6173a781a5c757e430a738cea394c907dda10 /lib/libc/stdlib | |
parent | fdb24fe1fea97b893de0593093364092aa6015c5 (diff) |
sys/uio.h is not used anymore
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r-- | lib/libc/stdlib/malloc.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libc/stdlib/malloc.c b/lib/libc/stdlib/malloc.c index ff1f59c479d..81c30812a46 100644 --- a/lib/libc/stdlib/malloc.c +++ b/lib/libc/stdlib/malloc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: malloc.c,v 1.248 2018/03/30 07:23:15 otto Exp $ */ +/* $OpenBSD: malloc.c,v 1.249 2018/04/07 09:57:08 otto Exp $ */ /* * Copyright (c) 2008, 2010, 2011, 2016 Otto Moerbeek <otto@drijf.net> * Copyright (c) 2012 Matthew Dempsky <matthew@openbsd.org> @@ -28,13 +28,12 @@ #include <sys/types.h> #include <sys/queue.h> #include <sys/mman.h> -#include <sys/uio.h> #include <errno.h> #include <stdarg.h> #include <stdint.h> +#include <stdio.h> #include <stdlib.h> #include <string.h> -#include <stdio.h> #include <unistd.h> #ifdef MALLOC_STATS |