source: EcnlProtoTool/trunk/openssl-1.1.0e/crypto/buffer/buf_err.c@ 331

Last change on this file since 331 was 331, checked in by coas-nagasima, 6 years ago

prototoolに関連するプロジェクトをnewlibからmuslを使うよう変更・更新
ntshellをnewlibの下位の実装から、muslのsyscallの実装に変更・更新
以下のOSSをアップデート
・mruby-1.3.0
・musl-1.1.18
・onigmo-6.1.3
・tcc-0.9.27
以下のOSSを追加
・openssl-1.1.0e
・curl-7.57.0
・zlib-1.2.11
以下のmrbgemsを追加
・iij/mruby-digest
・iij/mruby-env
・iij/mruby-errno
・iij/mruby-iijson
・iij/mruby-ipaddr
・iij/mruby-mock
・iij/mruby-require
・iij/mruby-tls-openssl

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc
File size: 1.1 KB
Line 
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/buffer.h>
14
15/* BEGIN ERROR CODES */
16#ifndef OPENSSL_NO_ERR
17
18# define ERR_FUNC(func) ERR_PACK(ERR_LIB_BUF,func,0)
19# define ERR_REASON(reason) ERR_PACK(ERR_LIB_BUF,0,reason)
20
21static ERR_STRING_DATA BUF_str_functs[] = {
22 {ERR_FUNC(BUF_F_BUF_MEM_GROW), "BUF_MEM_grow"},
23 {ERR_FUNC(BUF_F_BUF_MEM_GROW_CLEAN), "BUF_MEM_grow_clean"},
24 {ERR_FUNC(BUF_F_BUF_MEM_NEW), "BUF_MEM_new"},
25 {0, NULL}
26};
27
28static ERR_STRING_DATA BUF_str_reasons[] = {
29 {0, NULL}
30};
31
32#endif
33
34int ERR_load_BUF_strings(void)
35{
36#ifndef OPENSSL_NO_ERR
37
38 if (ERR_func_error_string(BUF_str_functs[0].error) == NULL) {
39 ERR_load_strings(0, BUF_str_functs);
40 ERR_load_strings(0, BUF_str_reasons);
41 }
42#endif
43 return 1;
44}
Note: See TracBrowser for help on using the repository browser.