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,12 +23,12 @@
|
|||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include "libguile/gsubr.h"
|
||||
#include "libguile/alist.h"
|
||||
#include "libguile/numbers.h"
|
||||
#include "libguile/strings.h"
|
||||
#include "gsubr.h"
|
||||
#include "alist.h"
|
||||
#include "numbers.h"
|
||||
#include "strings.h"
|
||||
|
||||
#include "libguile/debug-malloc.h"
|
||||
#include "debug-malloc.h"
|
||||
|
||||
/*
|
||||
* The following code is a hack which I wrote quickly in order to
|
||||
|
@ -243,6 +243,6 @@ scm_debug_malloc_prehistory ()
|
|||
void
|
||||
scm_init_debug_malloc ()
|
||||
{
|
||||
#include "libguile/debug-malloc.x"
|
||||
#include "debug-malloc.x"
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue