Module Name: src Committed By: maya Date: Wed Jun 13 04:21:21 UTC 2018
Modified Files: src/external/cddl/osnet/dist/uts/common/rpc: types.h Log Message: Avoid declaring ulonglong_t. Comment here already says it isn't necessary and will be removed. Hasten the process for us and avoid the problematic typedef. This is useful because u_longlong_t would otherwise need to be provided by compat headers. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/external/cddl/osnet/dist/uts/common/rpc/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/external/cddl/osnet/dist/uts/common/rpc/types.h diff -u src/external/cddl/osnet/dist/uts/common/rpc/types.h:1.2 src/external/cddl/osnet/dist/uts/common/rpc/types.h:1.3 --- src/external/cddl/osnet/dist/uts/common/rpc/types.h:1.2 Fri Apr 10 22:44:20 2015 +++ src/external/cddl/osnet/dist/uts/common/rpc/types.h Wed Jun 13 04:21:21 2018 @@ -49,13 +49,6 @@ extern "C" { typedef int bool_t; typedef int enum_t; -/* - * The ulonglong_t type was introduced to workaround an rpcgen bug - * that has been fixed, this next typedef will be removed in a future release. - * Do *NOT* use! - */ -typedef u_longlong_t ulonglong_t; - #if defined(_LP64) || defined(_I32LPx) typedef uint32_t rpcprog_t; typedef uint32_t rpcvers_t;