libguile.map 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # Linker version script for libguile. -*- ld-script -*-
  2. #
  3. # Copyright (C) 2009 Free Software Foundation, Inc.
  4. #
  5. # This file is part of GUILE.
  6. #
  7. # GUILE is free software; you can redistribute it and/or modify it
  8. # under the terms of the GNU Lesser General Public License as
  9. # published by the Free Software Foundation; either version 3, or
  10. # (at your option) any later version.
  11. #
  12. # GUILE is distributed in the hope that it will be useful, but
  13. # WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU Lesser General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU Lesser General Public
  18. # License along with GUILE; see the file COPYING.LESSER. If not,
  19. # write to the Free Software Foundation, Inc., 51 Franklin Street,
  20. # Fifth Floor, Boston, MA 02110-1301 USA
  21. GUILE_2.0
  22. {
  23. global:
  24. # Note: This includes `scm_i_' symbols declared as `SCM_API' (e.g.,
  25. # symbols from `deprecated.c' or symbols used by public inline
  26. # functions or macros).
  27. scm_*;
  28. # GDB interface.
  29. gdb_options;
  30. gdb_language;
  31. gdb_result;
  32. gdb_output;
  33. gdb_output_length;
  34. gdb_maybe_valid_type_p;
  35. gdb_read;
  36. gdb_eval;
  37. gdb_print;
  38. gdb_binding;
  39. local:
  40. *;
  41. };