diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-09-15 11:04:21 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-09-15 11:04:21 +0000 |
commit | 7efe92d0cadd12d3316939474f56a3f6e727a0b0 (patch) | |
tree | 1091149e7e94e1de15889d40637d5d3ca1add2f5 /libc/sysdeps/linux/bfin | |
parent | 953e7478a36597f227aeb487c97c03005a4a5f71 (diff) | |
download | uClibc-alpine-7efe92d0cadd12d3316939474f56a3f6e727a0b0.tar.bz2 uClibc-alpine-7efe92d0cadd12d3316939474f56a3f6e727a0b0.tar.xz |
pull from Blackfin repo: cleanup string funcs
Diffstat (limited to 'libc/sysdeps/linux/bfin')
-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 |