diff options
author | Gordon Ross <gwr@nexenta.com> | 2015-03-11 21:43:08 -0400 |
---|---|---|
committer | Gordon Ross <gwr@nexenta.com> | 2015-03-17 22:38:56 -0400 |
commit | 144f99a50481321408997219d433ad7cc8f0ef5e (patch) | |
tree | 99a558f1e4417651c6bb0f3d8474d12af3216b06 /usr/src/lib/libumem/sparc/umem_genasm.c | |
parent | f3846625a36e89babdc12f590c0d24ffee98b5ab (diff) | |
download | illumos-joyent-144f99a50481321408997219d433ad7cc8f0ef5e.tar.gz |
5705 lint building usr/src/lib/libumem/sparc/umem_genasm.c
Reviewed by: Robert Mustacchi <rm@joyent.com>
Approved by: Dan McDonald <danmcd@omniti.com>
Diffstat (limited to 'usr/src/lib/libumem/sparc/umem_genasm.c')
-rw-r--r-- | usr/src/lib/libumem/sparc/umem_genasm.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/usr/src/lib/libumem/sparc/umem_genasm.c b/usr/src/lib/libumem/sparc/umem_genasm.c index 4bdea8122d..202d642b0b 100644 --- a/usr/src/lib/libumem/sparc/umem_genasm.c +++ b/usr/src/lib/libumem/sparc/umem_genasm.c @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright (c) 2012 Joyent, Inc. All rights reserved. + * Copyright (c) 2014 Joyent, Inc. All rights reserved. */ /* @@ -28,11 +28,16 @@ * statement in lib/libumem/common/umem.c, particularly section eight. */ +#include <inttypes.h> +#include <strings.h> +#include <umem_impl.h> +#include "umem_base.h" + const int umem_genasm_supported = 0; /*ARGSUSED*/ int -umem_genasm(int *cp, int nc) +umem_genasm(int *alloc_sizes, umem_cache_t **caches, int ncaches) { return (1); } |