]> git.sur5r.net Git - freertos/blob - FreeRTOS-Plus/Source/WolfSSL/ctaocrypt/src/wolfcrypt_last.c
commit 9f316c246baafa15c542a5aea81a94f26e3d6507
[freertos] / FreeRTOS-Plus / Source / WolfSSL / ctaocrypt / src / wolfcrypt_last.c
1 /* wolfcrypt_last.c
2  *
3  * Copyright (C) 2006-2015 wolfSSL Inc.
4  *
5  * This file is part of wolfSSL. (formerly known as CyaSSL)
6  *
7  * wolfSSL is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * wolfSSL is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
20  */
21
22 /* This file needs to be linked last in order to work correctly */
23
24 #ifdef HAVE_CONFIG_H
25     #include <config.h>
26 #endif
27
28 /* in case user set HAVE_FIPS there */
29 #include <cyassl/ctaocrypt/settings.h>
30
31 #ifdef HAVE_FIPS
32
33 /* last function of text/code segment */
34 int wolfCrypt_FIPS_last(void);
35 int wolfCrypt_FIPS_last(void)
36 {
37     return 0;
38 }
39
40
41 /* read only end address */
42 const unsigned int wolfCrypt_FIPS_ro_end[] =
43 { 0x1a2b3c4d, 0xffffffff };
44
45
46 #endif /* HAVE_FIPS */
47