diff options
author | Gary Houston <ghouston@arglist.com> | 1996-08-07 09:46:41 +0000 |
---|---|---|
committer | Gary Houston <ghouston@arglist.com> | 1996-08-07 09:46:41 +0000 |
commit | 95b8881908aace933729d5242f4ce6e4d031360a (patch) | |
tree | 752602d65c30cc5cfae7b4df46914e078038b7ec /libguile/mallocs.c | |
parent | 458d621d1fdb842e3218b4184be2f1bc16e98182 (diff) | |
download | guile-95b8881908aace933729d5242f4ce6e4d031360a.tar.gz |
portability fixes for header inclusion etc.
Diffstat (limited to 'libguile/mallocs.c')
-rw-r--r-- | libguile/mallocs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/mallocs.c b/libguile/mallocs.c index 27f1a791c..0f3022ed6 100644 --- a/libguile/mallocs.c +++ b/libguile/mallocs.c @@ -23,10 +23,10 @@ #include "_scm.h" #include "mallocs.h" #ifdef HAVE_MALLOC_H -#include "malloc.h" +#include <malloc.h> #endif #ifdef HAVE_UNISTD_H -#include "unistd.h" +#include <unistd.h> #endif |