diff options
| author | pooka <pooka@NetBSD.org> | 2011-03-15 12:21:08 +0000 |
|---|---|---|
| committer | pooka <pooka@NetBSD.org> | 2011-03-15 12:21:08 +0000 |
| commit | af20530d327edc67e8d9c8e1a2ba2ea8db18aa35 (patch) | |
| tree | 24b73c4a961b13ebdee032eb2b88ee7187f8ec60 /include | |
| parent | e79fb6dd58a898eab2a8299713b821cc0ef7ed4a (diff) | |
put in a proto for commaize_number()
(nb. doing this purely as the minimum work solution to get a working build)
Diffstat (limited to 'include')
| -rw-r--r-- | include/stdlib.h | 4 |
1 files changed, 3 insertions, 1 deletions
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); |
