/*
 * =====================================================================================
 *
 *       Filename:  mcStackProtection.h
 *
 *    Description:  Stack protection in Tbase.
 *
 *        Version:  1.0
 *        Created:  12/05/2017 03:47:35 PM
 *       Compiler:  armcc
 *
 *         Author:  Dongwook Shim (), dw.shim@samsung.com
 *        Company:  Samsung Electronics
 *
 *        Copyright (c) 2017 by Samsung Electronics, 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 initStackProtection(void);

#endif	// End of __STACK_PROTECTION_H__
