Use ANSI-style functions for Base64 wrappers
authortb <tb@openbsd.org>
Thu, 13 Apr 2023 18:20:21 +0000 (18:20 +0000)
committertb <tb@openbsd.org>
Thu, 13 Apr 2023 18:20:21 +0000 (18:20 +0000)
Silences a few -Wdeprecated-non-prototype warnings emitted by clang 15.

ok bluhm miod

lib/libkeynote/base64.c

index 070af30..6618330 100644 (file)
@@ -1,5 +1,5 @@
-/* $OpenBSD: base64.c,v 1.11 2004/06/29 11:35:56 msf Exp $ */
-/* $OpenBSD: base64.c,v 1.11 2004/06/29 11:35:56 msf Exp $ */
+/* $OpenBSD: base64.c,v 1.12 2023/04/13 18:20:21 tb Exp $ */
+/* $OpenBSD: base64.c,v 1.12 2023/04/13 18:20:21 tb Exp $ */
 /*
  * The author of this code is Angelos D. Keromytis (angelos@dsl.cis.upenn.edu)
  *
@@ -34,11 +34,8 @@ int __b64_ntop(unsigned char const *, size_t, char *, size_t);
 int __b64_pton(char const *, unsigned char *, size_t);
 
 int
-kn_encode_base64(src, srclength, target, targsize)
-unsigned char const *src;
-unsigned int srclength;
-char *target;
-unsigned int targsize;
+kn_encode_base64(unsigned char const *src, unsigned int srclength, char *target,
+    unsigned int targsize)
 {
     int i;
 
@@ -49,10 +46,7 @@ unsigned int targsize;
 }
 
 int
-kn_decode_base64(src, target, targsize)
-char const *src;
-unsigned char *target;
-unsigned int targsize;
+kn_decode_base64(char const *src, unsigned char *target, unsigned int targsize)
 {
     int i;