blob: 0a633681bef1227bd13e616b80f946dc8c832942 (
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 <features.h>
#ifdef __ASSEMBLER__
#define ENTRY(sym) .global sym; .type sym, STT_FUNC; sym:
#define ENDPROC(sym) .size sym, . - sym
#endif
#endif
|