summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libc/timingsafe/timingsafe.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/regress/lib/libc/timingsafe/timingsafe.c b/src/regress/lib/libc/timingsafe/timingsafe.c
index f6605f8696..d768a808b6 100644
--- a/src/regress/lib/libc/timingsafe/timingsafe.c
+++ b/src/regress/lib/libc/timingsafe/timingsafe.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: timingsafe.c,v 1.3 2014/06/21 22:57:15 tedu Exp $ */ 1/* $OpenBSD: timingsafe.c,v 1.4 2024/02/04 20:51:21 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2014 Google Inc. 3 * Copyright (c) 2014 Google Inc.
4 * 4 *
@@ -28,7 +28,7 @@ enum {
28static unsigned char bufone[N], buftwo[N]; 28static unsigned char bufone[N], buftwo[N];
29 29
30void 30void
31check() 31check(void)
32{ 32{
33 int cmp = memcmp(bufone, buftwo, N); 33 int cmp = memcmp(bufone, buftwo, N);
34 34
@@ -49,7 +49,7 @@ check()
49} 49}
50 50
51int 51int
52main() 52main(void)
53{ 53{
54 int i, j; 54 int i, j;
55 55