diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-06-01 07:44:12 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-06-01 07:44:12 +0000 |
commit | 7a388a45d37c59a8764734cc65cb70a3f4aea87b (patch) | |
tree | 8bf4f2899626432d8431968366565bfc787ff0ea /lib/libcrypto/md5 | |
parent | 2faf0c828da9fd6c83a54efcea7d85f34f43ed40 (diff) |
Reverse order of attributes
requested by jsing on review
Diffstat (limited to 'lib/libcrypto/md5')
-rw-r--r-- | lib/libcrypto/md5/md5.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libcrypto/md5/md5.h b/lib/libcrypto/md5/md5.h index 9191ff21317..a3529f486d3 100644 --- a/lib/libcrypto/md5/md5.h +++ b/lib/libcrypto/md5/md5.h @@ -1,4 +1,4 @@ -/* $OpenBSD: md5.h,v 1.22 2024/06/01 07:36:16 tb Exp $ */ +/* $OpenBSD: md5.h,v 1.23 2024/06/01 07:44:11 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -98,8 +98,8 @@ int MD5_Update(MD5_CTX *c, const void *data, size_t len) __attribute__ ((__bounded__(__buffer__, 2, 3))); int MD5_Final(unsigned char *md, MD5_CTX *c); unsigned char *MD5(const unsigned char *d, size_t n, unsigned char *md) - __attribute__ ((__nonnull__(3))) - __attribute__ ((__bounded__(__buffer__, 1, 2))); + __attribute__ ((__bounded__(__buffer__, 1, 2))) + __attribute__ ((__nonnull__(3))); void MD5_Transform(MD5_CTX *c, const unsigned char *b); #ifdef __cplusplus } |