diff options
| author | tb <> | 2024-02-04 20:51:21 +0000 |
|---|---|---|
| committer | tb <> | 2024-02-04 20:51:21 +0000 |
| commit | 10382845c17652e30914b033f87a1b8f310ea71c (patch) | |
| tree | ea61403863332043d61bbb2f14947fcce9dcb2e3 /src | |
| parent | 860f8fe2a068bd6c4f39f8841e6e2dcd30ac3652 (diff) | |
| download | openbsd-10382845c17652e30914b033f87a1b8f310ea71c.tar.gz openbsd-10382845c17652e30914b033f87a1b8f310ea71c.tar.bz2 openbsd-10382845c17652e30914b033f87a1b8f310ea71c.zip | |
More missing void
From Christian Andersen
Diffstat (limited to 'src')
| -rw-r--r-- | src/regress/lib/libc/timingsafe/timingsafe.c | 6 |
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 { | |||
| 28 | static unsigned char bufone[N], buftwo[N]; | 28 | static unsigned char bufone[N], buftwo[N]; |
| 29 | 29 | ||
| 30 | void | 30 | void |
| 31 | check() | 31 | check(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 | ||
| 51 | int | 51 | int |
| 52 | main() | 52 | main(void) |
| 53 | { | 53 | { |
| 54 | int i, j; | 54 | int i, j; |
| 55 | 55 | ||
