diff options
author | schwarze <> | 2021-12-13 17:55:53 +0000 |
---|---|---|
committer | schwarze <> | 2021-12-13 17:55:53 +0000 |
commit | f8a3a6353443409a9aee5aaf6db217845c36f726 (patch) | |
tree | a849f42a5f922fd9fac8ab7cb5b9893c09a83eed | |
parent | 82dc0f2cd4b771d4c9919257ba0bbf552353ba8c (diff) | |
download | openbsd-f8a3a6353443409a9aee5aaf6db217845c36f726.tar.gz openbsd-f8a3a6353443409a9aee5aaf6db217845c36f726.tar.bz2 openbsd-f8a3a6353443409a9aee5aaf6db217845c36f726.zip |
this file doesn't use anything from <stdio.h>;
in particular, NULL is also in <stdlib.h> according to the C99 standard;
"free commit" tb@
-rw-r--r-- | src/lib/libcrypto/asn1/a_strnid.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/libcrypto/asn1/a_strnid.c b/src/lib/libcrypto/asn1/a_strnid.c index f14daa602c..034c4d72c3 100644 --- a/src/lib/libcrypto/asn1/a_strnid.c +++ b/src/lib/libcrypto/asn1/a_strnid.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: a_strnid.c,v 1.24 2021/12/13 14:06:17 schwarze Exp $ */ | 1 | /* $OpenBSD: a_strnid.c,v 1.25 2021/12/13 17:55:53 schwarze Exp $ */ |
2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
3 | * project 1999. | 3 | * project 1999. |
4 | */ | 4 | */ |
@@ -58,7 +58,6 @@ | |||
58 | 58 | ||
59 | #include <errno.h> | 59 | #include <errno.h> |
60 | #include <limits.h> | 60 | #include <limits.h> |
61 | #include <stdio.h> | ||
62 | #include <stdlib.h> | 61 | #include <stdlib.h> |
63 | #include <string.h> | 62 | #include <string.h> |
64 | 63 | ||