From af20530d327edc67e8d9c8e1a2ba2ea8db18aa35 Mon Sep 17 00:00:00 2001 From: pooka Date: Tue, 15 Mar 2011 12:21:08 +0000 Subject: put in a proto for commaize_number() (nb. doing this purely as the minimum work solution to get a working build) --- include/stdlib.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'include/stdlib.h') diff --git a/include/stdlib.h b/include/stdlib.h index afab0b49d61..e28667d0e35 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -1,4 +1,4 @@ -/* $NetBSD: stdlib.h,v 1.95 2011/02/04 22:07:07 christos Exp $ */ +/* $NetBSD: stdlib.h,v 1.96 2011/03/15 12:21:08 pooka Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -282,6 +282,8 @@ __aconst char *devname(dev_t, mode_t) __RENAME(__devname50); int humanize_number(char *, size_t, int64_t, const char *, int, int); int dehumanize_number(const char *, int64_t *); +int commaize_number(char *, size_t, int64_t); + devmajor_t getdevmajor(const char *, mode_t); int getloadavg(double [], int); -- cgit