Remove unused error/function codes.
[openssl.git] / crypto / rand / rand_err.c
1 /*
2  * Generated by util/mkerr.pl DO NOT EDIT
3  * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
4  *
5  * Licensed under the OpenSSL license (the "License").  You may not use
6  * this file except in compliance with the License.  You can obtain a copy
7  * in the file LICENSE in the source distribution or at
8  * https://www.openssl.org/source/license.html
9  */
10
11 #include <stdio.h>
12 #include <openssl/err.h>
13 #include <openssl/rand.h>
14
15 /* BEGIN ERROR CODES */
16 #ifndef OPENSSL_NO_ERR
17
18 # define ERR_FUNC(func) ERR_PACK(ERR_LIB_RAND,func,0)
19 # define ERR_REASON(reason) ERR_PACK(ERR_LIB_RAND,0,reason)
20
21 static ERR_STRING_DATA RAND_str_functs[] = {
22     {ERR_FUNC(RAND_F_RAND_BYTES), "RAND_bytes"},
23     {0, NULL}
24 };
25
26 static ERR_STRING_DATA RAND_str_reasons[] = {
27     {ERR_REASON(RAND_R_PRNG_NOT_SEEDED), "PRNG not seeded"},
28     {0, NULL}
29 };
30
31 #endif
32
33 void ERR_load_RAND_strings(void)
34 {
35 #ifndef OPENSSL_NO_ERR
36
37     if (ERR_func_error_string(RAND_str_functs[0].error) == NULL) {
38         ERR_load_strings(0, RAND_str_functs);
39         ERR_load_strings(0, RAND_str_reasons);
40     }
41 #endif
42 }