diff options
author | Brent Cook <bcook@cvs.openbsd.org> | 2015-07-20 22:42:57 +0000 |
---|---|---|
committer | Brent Cook <bcook@cvs.openbsd.org> | 2015-07-20 22:42:57 +0000 |
commit | 41e29b412b39ae8956c785272e61caa2cb1021a5 (patch) | |
tree | afa3a26f12008c333eb2bb48901281d13fb9b25d /lib | |
parent | e794f7db702266a47bff8d593c7ff67fcdceaff6 (diff) |
prefer string.h to strings.h ok guenther@ doug@
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/gost/gostr341001_params.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/gost/gostr341001_params.c b/lib/libcrypto/gost/gostr341001_params.c index d14097df7e6..6500c30f317 100644 --- a/lib/libcrypto/gost/gostr341001_params.c +++ b/lib/libcrypto/gost/gostr341001_params.c @@ -1,4 +1,4 @@ -/* $OpenBSD: gostr341001_params.c,v 1.2 2014/11/09 23:06:52 miod Exp $ */ +/* $OpenBSD: gostr341001_params.c,v 1.3 2015/07/20 22:42:56 bcook Exp $ */ /* * Copyright (c) 2014 Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> * Copyright (c) 2005-2006 Cryptocom LTD @@ -49,7 +49,7 @@ * ==================================================================== */ -#include <strings.h> +#include <string.h> #include <openssl/opensslconf.h> |