/**
 * * \file stack_protection.h
 * * \brief Module for preventing stack smashing
 * * \author Nikita Kachko (m.kachko@samsung.com)
 * * \version 0.1
 * * \date Created Dec 01, 2016 16:12
 * * \par In Samsung Ukraine R&D Center (SURC) under a contract between
 * * \par LLC "Samsung Electronics Ukraine Company" (Kiev, Ukraine) and
 * * \par "Samsung Elecrtronics Co", Ltd (Seoul, Republic of Korea)
 * * \par Copyright: (c) Samsung Electronics Co, Ltd 2016. All rights reserved.
 * **/

#ifndef _STACK_PROTECTION_H_
#define _STACK_PROTECTION_H_

/*
 *  * Initialize the stackprotector canary value
 *   * NOTE: this must only be called from start of trustlet
 *    */
void stack_protection_init(void);

#endif // _SWD_STACK_PROTECTION_H_
