Module Name: src Committed By: martin Date: Tue Oct 15 09:56:57 UTC 2024
Modified Files: src/lib/libc/gen [netbsd-10]: fixunstfdi_ieee754.c fixunstfsi_ieee754.c Log Message: Additionally pull up following revision(s) (requested by rin in ticket #952): lib/libc/gen/fixunstfdi_ieee754.c: revision 1.2 lib/libc/gen/fixunstfsi_ieee754.c: revision 1.3 fixunstf[sd]i_ieee754: Explicitly include stddef.h for size_t Fix build for mips{,n}64. Note that stddef.h has been implicitly included via eabi.h for aarch64, on the other hand. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.1.52.1 src/lib/libc/gen/fixunstfdi_ieee754.c cvs rdiff -u -r1.2 -r1.2.42.1 src/lib/libc/gen/fixunstfsi_ieee754.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/lib/libc/gen/fixunstfdi_ieee754.c diff -u src/lib/libc/gen/fixunstfdi_ieee754.c:1.1 src/lib/libc/gen/fixunstfdi_ieee754.c:1.1.52.1 --- src/lib/libc/gen/fixunstfdi_ieee754.c:1.1 Sat Jul 9 02:30:27 2011 +++ src/lib/libc/gen/fixunstfdi_ieee754.c Tue Oct 15 09:56:57 2024 @@ -1,4 +1,4 @@ -/* $NetBSD: fixunstfdi_ieee754.c,v 1.1 2011/07/09 02:30:27 matt Exp $ */ +/* $NetBSD: fixunstfdi_ieee754.c,v 1.1.52.1 2024/10/15 09:56:57 martin Exp $ */ /*- * Copyright (c) 2011 The NetBSD Foundation, Inc. * All rights reserved. @@ -31,10 +31,11 @@ #include <sys/cdefs.h> #if defined(LIBC_SCCS) && !defined(lint) -__RCSID("$NetBSD: fixunstfdi_ieee754.c,v 1.1 2011/07/09 02:30:27 matt Exp $"); +__RCSID("$NetBSD: fixunstfdi_ieee754.c,v 1.1.52.1 2024/10/15 09:56:57 martin Exp $"); #endif /* LIBC_SCCS and not lint */ #include <stdbool.h> +#include <stddef.h> #include <stdint.h> #include <float.h> #include <machine/ieee.h> Index: src/lib/libc/gen/fixunstfsi_ieee754.c diff -u src/lib/libc/gen/fixunstfsi_ieee754.c:1.2 src/lib/libc/gen/fixunstfsi_ieee754.c:1.2.42.1 --- src/lib/libc/gen/fixunstfsi_ieee754.c:1.2 Sun Aug 5 04:28:58 2012 +++ src/lib/libc/gen/fixunstfsi_ieee754.c Tue Oct 15 09:56:57 2024 @@ -1,4 +1,4 @@ -/* $NetBSD: fixunstfsi_ieee754.c,v 1.2 2012/08/05 04:28:58 matt Exp $ */ +/* $NetBSD: fixunstfsi_ieee754.c,v 1.2.42.1 2024/10/15 09:56:57 martin Exp $ */ /*- * Copyright (c) 2011 The NetBSD Foundation, Inc. * All rights reserved. @@ -31,10 +31,11 @@ #include <sys/cdefs.h> #if defined(LIBC_SCCS) && !defined(lint) -__RCSID("$NetBSD: fixunstfsi_ieee754.c,v 1.2 2012/08/05 04:28:58 matt Exp $"); +__RCSID("$NetBSD: fixunstfsi_ieee754.c,v 1.2.42.1 2024/10/15 09:56:57 martin Exp $"); #endif /* LIBC_SCCS and not lint */ #include <stdbool.h> +#include <stddef.h> #include <stdint.h> #include <float.h> #include <machine/ieee.h>