xtp-meaning freed memory usage fix
[xombrero.git] / freebsd / util.h
blobfe3d6b70d813dea0e7f6345d826a328a349e2c6a
1 /*
2 * Copyright (c) 2010 Marco Peereboom <marco@peereboom.us>
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 * This file tries to make up for the difference between OpenBSD's
18 * <util.h> and FreeBSD's <libutil.h>.
22 * fmt_scaled(3) specific flags. (from OpenBSD util.h)
25 #define FMT_SCALED_STRSIZE 7 /* minus sign, 4 digits, suffix, null byte */
27 int fmt_scaled(long long number, char *result);