blob: 352fbf42675b0764ff5bf6caa6b4b1cb3eb3587a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* libc/sysdeps/linux/bfin/sysdep.h
*
* Copyright (C) 2007 Analog Devices Inc.
*
* Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
*/
#ifndef __BFIN_SYSDEP_H__
#define __BFIN_SYSDEP_H__
#include <common/sysdep.h>
#ifdef __ASSEMBLER__
#define ENTRY(sym) .global sym; .type sym, STT_FUNC; sym:
#define ENDPROC(sym) .size sym, . - sym
#endif
#endif
|