diff options
author | Carmelo Amoroso <carmelo.amoroso@st.com> | 2008-06-18 15:40:43 +0000 |
---|---|---|
committer | Carmelo Amoroso <carmelo.amoroso@st.com> | 2008-06-18 15:40:43 +0000 |
commit | 328d2c63d3529eacf2d4c47c949f1f9830bf8470 (patch) | |
tree | 4c0e7ebbe8455843c8b09cd5ccd8e3969a972ce3 /libc/sysdeps/linux/bfin/sysdep.h | |
parent | fb7f0f49c739f96f2867fbfebdfea4eac4af70db (diff) | |
download | uClibc-alpine-328d2c63d3529eacf2d4c47c949f1f9830bf8470.tar.bz2 uClibc-alpine-328d2c63d3529eacf2d4c47c949f1f9830bf8470.tar.xz |
Synch libc bfin specific with trunk
Diffstat (limited to 'libc/sysdeps/linux/bfin/sysdep.h')
-rw-r--r-- | libc/sysdeps/linux/bfin/sysdep.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/bfin/sysdep.h b/libc/sysdeps/linux/bfin/sysdep.h new file mode 100644 index 000000000..4080c22a4 --- /dev/null +++ b/libc/sysdeps/linux/bfin/sysdep.h @@ -0,0 +1,20 @@ +/* + * 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: + +#endif + +#endif |