inline.c 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. /* Copyright 2001,2006,2008,2011-2013,2018-2019
  2. Free Software Foundation, Inc.
  3. This file is part of Guile.
  4. Guile is free software: you can redistribute it and/or modify it
  5. under the terms of the GNU Lesser General Public License as published
  6. by the Free Software Foundation, either version 3 of the License, or
  7. (at your option) any later version.
  8. Guile is distributed in the hope that it will be useful, but WITHOUT
  9. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10. FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
  11. License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with Guile. If not, see
  14. <https://www.gnu.org/licenses/>. */
  15. #ifdef HAVE_CONFIG_H
  16. # include <config.h>
  17. #endif
  18. #define SCM_IMPLEMENT_INLINES 1
  19. #define SCM_INLINE_C_IMPLEMENTING_INLINES 1
  20. #include "array-handle.h"
  21. #include "chars.h"
  22. #include "gc.h"
  23. #include "pairs.h"
  24. #include "ports.h"
  25. #include "smob.h"
  26. #include "strings.h"