Module Name: src
Committed By: christos
Date: Sun Dec 6 03:19:15 UTC 2020
Modified Files:
src/sys/arch/sparc/include: types.h
Log Message:
undo previous; __register_t is already defined
To generate a diff of this commit:
cvs rdiff -u -r1.69 -r1.70 src/sys/arch/sparc/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/sparc/include/types.h
diff -u src/sys/arch/sparc/include/types.h:1.69 src/sys/arch/sparc/include/types.h:1.70
--- src/sys/arch/sparc/include/types.h:1.69 Sat Dec 5 21:23:12 2020
+++ src/sys/arch/sparc/include/types.h Sat Dec 5 22:19:14 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: types.h,v 1.69 2020/12/06 02:23:12 christos Exp $ */
+/* $NetBSD: types.h,v 1.70 2020/12/06 03:19:14 christos Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -57,10 +57,9 @@
#include <sys/featuretest.h>
#include <machine/int_types.h>
-typedef unsigned long int __register_t;
/* The following are unsigned to prevent annoying sign extended pointers. */
#if defined(_KERNEL) || defined(_KMEMUSER) || defined(_KERNTYPES) || defined(_STANDALONE)
-typedef __register_t register_t;
+typedef unsigned long int register_t;
#define PRIxREGISTER "lx"
typedef unsigned int register32_t;
#define PRIxREGISTER32 "x"