libguile.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. #ifndef LIBGUILEH
  2. #define LIBGUILEH
  3. /* Copyright (C) 1995, 1996, 1997, 1998, 2000 Free Software Foundation, Inc.
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2, or (at your option)
  8. * any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this software; see the file COPYING. If not, write to
  17. * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
  18. * Boston, MA 02111-1307 USA
  19. *
  20. * As a special exception, the Free Software Foundation gives permission
  21. * for additional uses of the text contained in its release of GUILE.
  22. *
  23. * The exception is that, if you link the GUILE library with other files
  24. * to produce an executable, this does not by itself cause the
  25. * resulting executable to be covered by the GNU General Public License.
  26. * Your use of that executable is in no way restricted on account of
  27. * linking the GUILE library code into it.
  28. *
  29. * This exception does not however invalidate any other reasons why
  30. * the executable file might be covered by the GNU General Public License.
  31. *
  32. * This exception applies only to the code released by the
  33. * Free Software Foundation under the name GUILE. If you copy
  34. * code from other Free Software Foundation releases into a copy of
  35. * GUILE, as the General Public License permits, the exception does
  36. * not apply to the code that you add in this way. To avoid misleading
  37. * anyone as to the status of such modified files, you must delete
  38. * this exception notice from them.
  39. *
  40. * If you write modifications of your own for GUILE, it is your choice
  41. * whether to permit this exception to apply to your modifications.
  42. * If you do not wish that, delete this exception notice. */
  43. #ifdef __cplusplus
  44. extern "C" {
  45. #endif
  46. #include "libguile/__scm.h"
  47. /* These files define typedefs used by later files, so they need to
  48. come first. */
  49. #include "libguile/print.h"
  50. #include "libguile/smob.h"
  51. #include "libguile/pairs.h"
  52. #include "libguile/alist.h"
  53. #include "libguile/arbiters.h"
  54. #include "libguile/async.h"
  55. #include "libguile/boolean.h"
  56. #include "libguile/chars.h"
  57. #include "libguile/continuations.h"
  58. #ifdef DEBUG_EXTENSIONS
  59. #include "libguile/backtrace.h"
  60. #include "libguile/debug.h"
  61. #include "libguile/stacks.h"
  62. #endif
  63. #include "libguile/dynl.h"
  64. #include "libguile/dynwind.h"
  65. #include "libguile/eq.h"
  66. #include "libguile/error.h"
  67. #include "libguile/eval.h"
  68. #include "libguile/evalext.h"
  69. #include "libguile/feature.h"
  70. #include "libguile/filesys.h"
  71. #include "libguile/fluids.h"
  72. #include "libguile/fports.h"
  73. #include "libguile/gc.h"
  74. #include "libguile/gdbint.h"
  75. #include "libguile/gsubr.h"
  76. #include "libguile/guardians.h"
  77. #include "libguile/hash.h"
  78. #include "libguile/hashtab.h"
  79. #include "libguile/init.h"
  80. #include "libguile/ioext.h"
  81. #include "libguile/keywords.h"
  82. #include "libguile/list.h"
  83. #include "libguile/load.h"
  84. #include "libguile/macros.h"
  85. #include "libguile/mallocs.h"
  86. #include "libguile/modules.h"
  87. #include "libguile/net_db.h"
  88. #include "libguile/numbers.h"
  89. #include "libguile/objects.h"
  90. #include "libguile/objprop.h"
  91. #include "libguile/options.h"
  92. #include "libguile/ports.h"
  93. #include "libguile/posix.h"
  94. #include "libguile/procprop.h"
  95. #include "libguile/procs.h"
  96. #include "libguile/ramap.h"
  97. #include "libguile/random.h"
  98. #include "libguile/read.h"
  99. #include "libguile/root.h"
  100. #include "libguile/scmsigs.h"
  101. #include "libguile/script.h"
  102. #include "libguile/simpos.h"
  103. #include "libguile/snarf.h"
  104. #include "libguile/socket.h"
  105. #include "libguile/sort.h"
  106. #include "libguile/srcprop.h"
  107. #include "libguile/stackchk.h"
  108. #include "libguile/stime.h"
  109. #include "libguile/strings.h"
  110. #include "libguile/strop.h"
  111. #include "libguile/strorder.h"
  112. #include "libguile/strports.h"
  113. #include "libguile/struct.h"
  114. #include "libguile/symbols.h"
  115. #include "libguile/tag.h"
  116. #include "libguile/tags.h"
  117. #include "libguile/throw.h"
  118. #include "libguile/unif.h"
  119. #include "libguile/validate.h"
  120. #include "libguile/variable.h"
  121. #include "libguile/vectors.h"
  122. #include "libguile/version.h"
  123. #include "libguile/vports.h"
  124. #include "libguile/weaks.h"
  125. #ifdef USE_THREADS
  126. #include "libguile/threads.h"
  127. #endif
  128. #ifdef __cplusplus
  129. }
  130. #endif
  131. #endif /* LIBGUILEH */
  132. /*
  133. Local Variables:
  134. c-file-style: "gnu"
  135. End:
  136. */