dl-core.c 540 B

1234567891011121314151617181920
  1. /*
  2. * This contains all symbols and functions to support
  3. * dynamic linking into static libc.
  4. * Copyright (c) 2008 STMicroelectronics Ltd
  5. * Author: Carmelo Amoroso <carmelo.amoroso@st.com>
  6. *
  7. * Based on draft work by Peter S. Mazinger <ps.m@gmx.net>
  8. *
  9. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  10. *
  11. */
  12. #ifdef SHARED
  13. #error "This file is not suitable for linking into dynamic libc"
  14. #else
  15. /* Include ldso symbols and functions used into static libc */
  16. #include "../../../ldso/ldso/dl-symbols.c"
  17. #endif