blob: 844a8110f14eda799749b13544ef8f0e751a9d30 [file] [log] [blame]
/*
* include/linkage.h
*
* Copyright (C) 2015 ARM Limited. All rights reserved.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE.txt file.
*/
#ifndef __LINKAGE_H
#define __LINKAGE_H
#ifdef __ASSEMBLY__
#define ENTRY(name) \
.globl name; \
.type name, %function; \
name:
#endif /* __ASSEMBLY__ */
#endif