mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +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
|
@ -23,13 +23,13 @@
|
|||
# include <config.h>
|
||||
#endif
|
||||
|
||||
#include "libguile/gsubr.h"
|
||||
#include "libguile/numbers.h"
|
||||
#include "libguile/ports.h"
|
||||
#include "libguile/threads.h"
|
||||
#include "libguile/dynwind.h"
|
||||
#include "gsubr.h"
|
||||
#include "numbers.h"
|
||||
#include "ports.h"
|
||||
#include "threads.h"
|
||||
#include "dynwind.h"
|
||||
|
||||
#include "libguile/stackchk.h"
|
||||
#include "stackchk.h"
|
||||
|
||||
|
||||
/* {Stack Checking}
|
||||
|
@ -80,5 +80,5 @@ SCM_DEFINE (scm_sys_get_stack_size, "%get-stack-size", 0, 0, 0,
|
|||
void
|
||||
scm_init_stackchk ()
|
||||
{
|
||||
#include "libguile/stackchk.x"
|
||||
#include "stackchk.x"
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue