mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-17 09:10:22 +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
|
@ -24,19 +24,19 @@
|
|||
#endif
|
||||
|
||||
#include <stdio.h>
|
||||
#include "libguile/gsubr.h"
|
||||
#include "libguile/pairs.h"
|
||||
#include "libguile/boolean.h"
|
||||
#include "gsubr.h"
|
||||
#include "pairs.h"
|
||||
#include "boolean.h"
|
||||
|
||||
#include "libguile/eval.h"
|
||||
#include "libguile/list.h"
|
||||
#include "libguile/numbers.h"
|
||||
#include "libguile/ports.h"
|
||||
#include "libguile/procprop.h"
|
||||
#include "libguile/smob.h"
|
||||
#include "libguile/strings.h"
|
||||
#include "eval.h"
|
||||
#include "list.h"
|
||||
#include "numbers.h"
|
||||
#include "ports.h"
|
||||
#include "procprop.h"
|
||||
#include "smob.h"
|
||||
#include "strings.h"
|
||||
|
||||
#include "libguile/hooks.h"
|
||||
#include "hooks.h"
|
||||
|
||||
|
||||
/* Scheme level hooks
|
||||
|
@ -228,5 +228,5 @@ scm_init_hooks ()
|
|||
{
|
||||
scm_tc16_hook = scm_make_smob_type ("hook", 0);
|
||||
scm_set_smob_print (scm_tc16_hook, hook_print);
|
||||
#include "libguile/hooks.x"
|
||||
#include "hooks.x"
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue