sysdep.h 384 B

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