Module Name:    src
Committed By:   martin
Date:           Thu Jul  7 10:06:02 UTC 2022

Modified Files:
        src/sys/arch/mips/include: types.h

Log Message:
Add PRIuVSIZE


To generate a diff of this commit:
cvs rdiff -u -r1.76 -r1.77 src/sys/arch/mips/include/types.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/mips/include/types.h
diff -u src/sys/arch/mips/include/types.h:1.76 src/sys/arch/mips/include/types.h:1.77
--- src/sys/arch/mips/include/types.h:1.76	Sat May 15 02:37:07 2021
+++ src/sys/arch/mips/include/types.h	Thu Jul  7 10:06:02 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: types.h,v 1.76 2021/05/15 02:37:07 simonb Exp $	*/
+/*	$NetBSD: types.h,v 1.77 2022/07/07 10:06:02 martin Exp $	*/
 
 /*-
  * Copyright (c) 1992, 1993
@@ -87,12 +87,14 @@ typedef __uint64_t	vsize_t;
 #define	PRIxVADDR	PRIx64
 #define	PRIxVSIZE	PRIx64
 #define	PRIdVSIZE	PRId64
+#define	PRIuVSIZE	PRIu64
 #else
 typedef __uint32_t	vaddr_t;
 typedef __uint32_t	vsize_t;
 #define	PRIxVADDR	PRIx32
 #define	PRIxVSIZE	PRIx32
 #define	PRIdVSIZE	PRId32
+#define	PRIuVSIZE	PRIu32
 #endif
 
 typedef	vaddr_t	vm_offset_t;	/* deprecated (cddl/FreeBSD compat) */

Reply via email to