diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-11-24 04:30:57 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-11-24 04:30:57 +0000 |
commit | 895b8281409aada945836631dceec7543b2fcd69 (patch) | |
tree | f1fa13a406e9e591fafb7c1902e9d93865a2b02e | |
parent | ad31c6b161cd8ab6f31fed085a346eba7c5d4503 (diff) |
Added bitmap_snprintf proto
-rw-r--r-- | sys/sys/systm.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/sys/systm.h b/sys/sys/systm.h index 77dce2ea463..a85ec732a07 100644 --- a/sys/sys/systm.h +++ b/sys/sys/systm.h @@ -1,4 +1,4 @@ -/* $OpenBSD: systm.h,v 1.14 1996/11/11 15:35:20 mickey Exp $ */ +/* $OpenBSD: systm.h,v 1.15 1996/11/24 04:30:56 niklas Exp $ */ /* $NetBSD: systm.h,v 1.50 1996/06/09 04:55:09 briggs Exp $ */ /*- @@ -158,6 +158,7 @@ int sprintf __P((char *buf, const char *, ...)) struct tty; void ttyprintf __P((struct tty *, const char *, ...)) __kprintf_attribute__((__format__(__kprintf__,2,3))); +char *bitmask_snprintf __P((u_long, const char *, char *, size_t)); void tablefull __P((const char *)); |