mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-13 23:20:32 +02:00
Make libguile header inclusion consistent within libguile c files
Change from '#include "libguile/foo.h"' and '#include <libguile/foo.h>' to '#include "foo.h"'.
This commit is contained in:
parent
51e36329d8
commit
3068bc7384
119 changed files with 1751 additions and 1757 deletions
|
@ -22,17 +22,17 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include "libguile/gsubr.h"
|
||||
#include "gsubr.h"
|
||||
#include "boolean.h"
|
||||
#include "eval.h"
|
||||
#include "extensions.h"
|
||||
#include "libguile/modules.h"
|
||||
#include "modules.h"
|
||||
#include "numbers.h"
|
||||
#include "frames.h"
|
||||
#include "ports.h"
|
||||
#include "libguile/symbols.h"
|
||||
#include "symbols.h"
|
||||
#include "threads.h"
|
||||
#include "libguile/variable.h"
|
||||
#include "variable.h"
|
||||
#include "vm.h"
|
||||
|
||||
SCM
|
||||
|
@ -444,7 +444,7 @@ void
|
|||
scm_init_frames (void)
|
||||
{
|
||||
#ifndef SCM_MAGIC_SNARFER
|
||||
#include "libguile/frames.x"
|
||||
#include "frames.x"
|
||||
#endif
|
||||
|
||||
scm_c_register_extension ("libguile-" SCM_EFFECTIVE_VERSION,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue