Date: Sat, 7 Nov 2015 12:30:43 +0000 (UTC) From: Konstantin Belousov <kib@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r290492 - head/sys/sys Message-ID: <201511071230.tA7CUhQs029346@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kib Date: Sat Nov 7 12:30:43 2015 New Revision: 290492 URL: https://svnweb.freebsd.org/changeset/base/290492 Log: Move intmax_t and uintmax_t type declarations to sys/_stdint.h to give it an exposure needed for use in sys/sysctl.h. Suggested by: bde Sponsored by: The FreeBSD Foundation MFC after: 2 weeks Modified: head/sys/sys/_stdint.h head/sys/sys/stdint.h Modified: head/sys/sys/_stdint.h ============================================================================== --- head/sys/sys/_stdint.h Sat Nov 7 12:15:02 2015 (r290491) +++ head/sys/sys/_stdint.h Sat Nov 7 12:30:43 2015 (r290492) @@ -78,5 +78,13 @@ typedef __intptr_t intptr_t; typedef __uintptr_t uintptr_t; #define _UINTPTR_T_DECLARED #endif +#ifndef _INTMAX_T_DECLARED +typedef __intmax_t intmax_t; +#define _INTMAX_T_DECLARED +#endif +#ifndef _UINTMAX_T_DECLARED +typedef __uintmax_t uintmax_t; +#define _UINTMAX_T_DECLARED +#endif #endif /* !_SYS__STDINT_H_ */ Modified: head/sys/sys/stdint.h ============================================================================== --- head/sys/sys/stdint.h Sat Nov 7 12:15:02 2015 (r290491) +++ head/sys/sys/stdint.h Sat Nov 7 12:30:43 2015 (r290492) @@ -55,15 +55,6 @@ typedef __uint_fast16_t uint_fast16_t; typedef __uint_fast32_t uint_fast32_t; typedef __uint_fast64_t uint_fast64_t; -#ifndef _INTMAX_T_DECLARED -typedef __intmax_t intmax_t; -#define _INTMAX_T_DECLARED -#endif -#ifndef _UINTMAX_T_DECLARED -typedef __uintmax_t uintmax_t; -#define _UINTMAX_T_DECLARED -#endif - /* GNU and Darwin define this and people seem to think it's portable */ #if defined(UINTPTR_MAX) && defined(UINT64_MAX) && (UINTPTR_MAX == UINT64_MAX) #define __WORDSIZE 64
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201511071230.tA7CUhQs029346>