Module Name: src Committed By: agc Date: Thu Aug 8 16:43:13 UTC 2013
Modified Files: src/common/lib/libutil: snprintb.c Log Message: Get the correct inttypes.h header, so this can build on !NetBSD. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 src/common/lib/libutil/snprintb.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/common/lib/libutil/snprintb.c diff -u src/common/lib/libutil/snprintb.c:1.12 src/common/lib/libutil/snprintb.c:1.13 --- src/common/lib/libutil/snprintb.c:1.12 Thu Aug 8 04:32:43 2013 +++ src/common/lib/libutil/snprintb.c Thu Aug 8 16:43:13 2013 @@ -1,4 +1,4 @@ -/* $NetBSD: snprintb.c,v 1.12 2013/08/08 04:32:43 mrg Exp $ */ +/* $NetBSD: snprintb.c,v 1.13 2013/08/08 16:43:13 agc Exp $ */ /*- * Copyright (c) 2002 The NetBSD Foundation, Inc. @@ -41,17 +41,17 @@ # include <sys/cdefs.h> # if defined(LIBC_SCCS) && !defined(lint) -__RCSID("$NetBSD: snprintb.c,v 1.12 2013/08/08 04:32:43 mrg Exp $"); +__RCSID("$NetBSD: snprintb.c,v 1.13 2013/08/08 16:43:13 agc Exp $"); # endif # include <sys/types.h> -# include <sys/inttypes.h> +# include <inttypes.h> # include <stdio.h> # include <util.h> # include <errno.h> # else /* ! _KERNEL */ # include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: snprintb.c,v 1.12 2013/08/08 04:32:43 mrg Exp $"); +__KERNEL_RCSID(0, "$NetBSD: snprintb.c,v 1.13 2013/08/08 16:43:13 agc Exp $"); # include <sys/param.h> # include <sys/inttypes.h> # include <sys/systm.h>