-/* $OpenBSD: t_backtrace.c,v 1.1 2021/06/10 23:40:46 jca Exp $ */
+/* $OpenBSD: t_backtrace.c,v 1.2 2021/12/13 18:04:28 deraadt Exp $ */
/*-
* Copyright (c) 2012 The NetBSD Foundation, Inc.
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
-#include <sys/cdefs.h>
+
+#include <sys/types.h>
#include <atf-c.h>
#include <string.h>
-/* $OpenBSD: log.h,v 1.1 2021/01/04 19:24:55 rob Exp $ */
+/* $OpenBSD: log.h,v 1.2 2021/12/13 18:04:28 deraadt Exp $ */
/*
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
#define LOG_H
#include <stdarg.h>
-#include <sys/cdefs.h>
void log_init(int, int);
void log_procinit(const char *);
-/* $OpenBSD: cexp_test.c,v 1.2 2021/12/13 16:56:48 deraadt Exp $ */
+/* $OpenBSD: cexp_test.c,v 1.3 2021/12/13 18:04:28 deraadt Exp $ */
/*-
* Copyright (c) 2008-2011 David Schultz <das@FreeBSD.org>
* All rights reserved.
* Tests for corner cases in cexp*().
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/types.h>
#include <complex.h>
-/* $OpenBSD: conj_test.c,v 1.3 2021/10/22 18:00:22 mbuhl Exp $ */
+/* $OpenBSD: conj_test.c,v 1.4 2021/12/13 18:04:28 deraadt Exp $ */
/*-
* Copyright (c) 2008 David Schultz <das@FreeBSD.org>
* All rights reserved.
* Tests for conj{,f,l}()
*/
-#include <sys/cdefs.h>
-/* $FreeBSD: head/lib/msun/tests/conj_test.c 314650 2017-03-04 10:07:46Z ngie $ */
-
#include <complex.h>
#include <fenv.h>
#include <math.h>
-/* $OpenBSD: csqrt_test.c,v 1.2 2021/12/13 16:56:48 deraadt Exp $ */
+/* $OpenBSD: csqrt_test.c,v 1.3 2021/12/13 18:04:28 deraadt Exp $ */
/*-
* Copyright (c) 2007 David Schultz <das@FreeBSD.org>
* All rights reserved.
#include "macros.h"
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/types.h>
#include <complex.h>
-/* $OpenBSD: ctrig_test.c,v 1.2 2021/12/13 16:56:48 deraadt Exp $ */
+/* $OpenBSD: ctrig_test.c,v 1.3 2021/12/13 18:04:28 deraadt Exp $ */
/*-
* Copyright (c) 2008-2011 David Schultz <das@FreeBSD.org>
* All rights reserved.
* Tests for csin[h](), ccos[h](), and ctan[h]().
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/types.h>
#include <complex.h>
#include <fenv.h>
-/* $OpenBSD: exponential_test.c,v 1.2 2021/10/22 18:07:01 mbuhl Exp $ */
+/* $OpenBSD: exponential_test.c,v 1.3 2021/12/13 18:04:28 deraadt Exp $ */
/*-
* Copyright (c) 2008 David Schultz <das@FreeBSD.org>
* All rights reserved.
* Tests for corner cases in exp*().
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <fenv.h>
#include <float.h>
#include <math.h>
-/* $OpenBSD: fenv_test.c,v 1.6 2021/10/22 18:00:22 mbuhl Exp $ */
+/* $OpenBSD: fenv_test.c,v 1.7 2021/12/13 18:04:28 deraadt Exp $ */
/*-
* Copyright (c) 2004 David Schultz <das@FreeBSD.org>
* All rights reserved.
* Test the correctness and C99-compliance of various fenv.h features.
*/
-#include <sys/cdefs.h>
-/* $FreeBSD: head/lib/msun/tests/fenv_test.c 314650 2017-03-04 10:07:46Z ngie $ */
-
#include <sys/types.h>
#include <sys/wait.h>
#include <assert.h>
-/* $OpenBSD: fls.c,v 1.1 2021/10/22 18:00:22 mbuhl Exp $ */
+/* $OpenBSD: fls.c,v 1.2 2021/12/13 18:04:28 deraadt Exp $ */
/*-
* SPDX-License-Identifier: BSD-3-Clause
*
#include "macros.h"
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <strings.h>
/*
-/* $OpenBSD: fma_test.c,v 1.2 2021/12/13 16:56:48 deraadt Exp $ */
+/* $OpenBSD: fma_test.c,v 1.3 2021/12/13 18:04:28 deraadt Exp $ */
/*-
* Copyright (c) 2008 David Schultz <das@FreeBSD.org>
* All rights reserved.
* Tests for fma{,f,l}().
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/types.h>
#include <fenv.h>
#include <float.h>
-/* $OpenBSD: fmaxmin_test.c,v 1.1 2021/10/22 18:00:22 mbuhl Exp $ */
+/* $OpenBSD: fmaxmin_test.c,v 1.2 2021/12/13 18:04:28 deraadt Exp $ */
/*-
* Copyright (c) 2008 David Schultz <das@FreeBSD.org>
* All rights reserved.
* Tests for fmax{,f,l}() and fmin{,f,l}.
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <fenv.h>
#include <float.h>
#include <math.h>
-/* $OpenBSD: invctrig_test.c,v 1.2 2021/12/13 16:56:48 deraadt Exp $ */
+/* $OpenBSD: invctrig_test.c,v 1.3 2021/12/13 18:04:28 deraadt Exp $ */
/*-
* Copyright (c) 2008-2013 David Schultz <das@FreeBSD.org>
* All rights reserved.
* Tests for casin[h](), cacos[h](), and catan[h]().
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/types.h>
#include <complex.h>
#include <fenv.h>
-/* $OpenBSD: invtrig_test.c,v 1.1 2021/10/22 18:00:22 mbuhl Exp $ */
+/* $OpenBSD: invtrig_test.c,v 1.2 2021/12/13 18:04:28 deraadt Exp $ */
/*-
* Copyright (c) 2008 David Schultz <das@FreeBSD.org>
* All rights reserved.
* sanity checks, not intended to be comprehensive.
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <fenv.h>
#include <float.h>
#include <math.h>
-/* $OpenBSD: logarithm_test.c,v 1.2 2021/12/13 16:56:48 deraadt Exp $ */
+/* $OpenBSD: logarithm_test.c,v 1.3 2021/12/13 18:04:28 deraadt Exp $ */
/*-
* Copyright (c) 2008-2010 David Schultz <das@FreeBSD.org>
* All rights reserved.
* Tests for corner cases in log*().
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/types.h>
#include <fenv.h>
#include <float.h>
-/* $OpenBSD: lrint_test.c,v 1.4 2021/10/22 18:00:22 mbuhl Exp $ */
+/* $OpenBSD: lrint_test.c,v 1.5 2021/12/13 18:04:28 deraadt Exp $ */
/*-
* Copyright (c) 2005-2008 David Schultz <das@FreeBSD.org>
* All rights reserved.
* Test for lrint(), lrintf(), llrint(), and llrintf().
*/
-#include <sys/cdefs.h>
-/* $FreeBSD: head/lib/msun/tests/lrint_test.c 314650 2017-03-04 10:07:46Z ngie $ */
-
#include <fenv.h>
#include <limits.h>
#include <math.h>
-/* $OpenBSD: lround_test.c,v 1.1 2021/10/22 18:00:22 mbuhl Exp $ */
+/* $OpenBSD: lround_test.c,v 1.2 2021/12/13 18:04:28 deraadt Exp $ */
/*-
* Copyright (c) 2005 David Schultz <das@FreeBSD.org>
* All rights reserved.
* Test for lround(), lroundf(), llround(), and llroundf().
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <fenv.h>
#include <limits.h>
#include <math.h>
-/* $OpenBSD: macros.h,v 1.2 2021/12/13 16:56:48 deraadt Exp $ */
+/* $OpenBSD: macros.h,v 1.3 2021/12/13 18:04:28 deraadt Exp $ */
/* Public domain - Moritz Buhl */
-#define __FBSDID(a)
#define rounddown(x, y) (((x)/(y))*(y))
#define fpequal(a, b) fpequal_cs(a, b, 1)
#define hexdump(...)
-/* $OpenBSD: nan_test.c,v 1.2 2021/12/13 16:56:48 deraadt Exp $ */
+/* $OpenBSD: nan_test.c,v 1.3 2021/12/13 18:04:28 deraadt Exp $ */
/*-
* Copyright (C) 2007 David Schultz <das@FreeBSD.org>
* All rights reserved.
* and sscanf("nan(...)", ...) work identically.
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/types.h>
#include <fenv.h>
#include <float.h>
-/* $OpenBSD: nearbyint_test.c,v 1.2 2021/12/13 16:56:48 deraadt Exp $ */
+/* $OpenBSD: nearbyint_test.c,v 1.3 2021/12/13 18:04:28 deraadt Exp $ */
/*-
* Copyright (c) 2010 David Schultz <das@FreeBSD.org>
* All rights reserved.
* - tests for harder values (more mantissa bits than float)
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/types.h>
#include <fenv.h>
#include <math.h>
-/* $OpenBSD: next_test.c,v 1.1 2021/10/22 18:00:23 mbuhl Exp $ */
+/* $OpenBSD: next_test.c,v 1.2 2021/12/13 18:04:28 deraadt Exp $ */
/*-
* Copyright (c) 2005 David Schultz <das@FreeBSD.org>
* All rights reserved.
* Test the correctness of nextafter{,f,l} and nexttoward{,f,l}.
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <fenv.h>
#include <float.h>
#include <math.h>
-/* $OpenBSD: rem_test.c,v 1.1 2021/10/22 18:00:23 mbuhl Exp $ */
+/* $OpenBSD: rem_test.c,v 1.2 2021/12/13 18:04:28 deraadt Exp $ */
/*-
* Copyright (c) 2005-2008 David Schultz <das@FreeBSD.org>
* All rights reserved.
* Missing tests: fmod, fmodf.
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <float.h>
#include <math.h>
#include <stdio.h>
-/* $OpenBSD: trig_test.c,v 1.2 2021/12/13 16:56:48 deraadt Exp $ */
+/* $OpenBSD: trig_test.c,v 1.3 2021/12/13 18:04:28 deraadt Exp $ */
/*-
* Copyright (c) 2008 David Schultz <das@FreeBSD.org>
* All rights reserved.
* available at http://www.cs.berkeley.edu/~wkahan/testpi/ .
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/types.h>
#include <fenv.h>
-/* $OpenBSD: execpromise.c,v 1.1 2017/12/16 11:00:49 florian Exp $ */
+/* $OpenBSD: execpromise.c,v 1.2 2021/12/13 18:04:28 deraadt Exp $ */
/*
* Copyright (c) 2017 Florian Obser <florian@openbsd.org>
*
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include <sys/cdefs.h>
+#include <sys/types.h>
#include <sys/socket.h>
#include <err.h>