diff options
author | Andy Wingo <wingo@pobox.com> | 2018-06-19 10:48:20 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2018-06-19 10:48:20 +0200 |
commit | 1abc5289bd7e212ad01594264507eea8e1b32cbc (patch) | |
tree | df10c04327cc540a272ddb88b42538bf5382ebda /libguile/expand.h | |
parent | 7bdd546965c3479006a26b09c2c6e04038462df5 (diff) | |
download | guile-1abc5289bd7e212ad01594264507eea8e1b32cbc.tar.gz |
Move struct.h include out of ports.h
* libguile/ports.h: Remove struct.h include.
* libguile/expand.h:
* libguile/hash.c:
* libguile/procs.c: Add struct.h includes.
Diffstat (limited to 'libguile/expand.h')
-rw-r--r-- | libguile/expand.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libguile/expand.h b/libguile/expand.h index 9c2732d87..86821eefc 100644 --- a/libguile/expand.h +++ b/libguile/expand.h @@ -3,7 +3,7 @@ #ifndef SCM_EXPAND_H #define SCM_EXPAND_H -/* Copyright (C) 2010, 2011, 2013, 2014 +/* Copyright (C) 2010, 2011, 2013, 2014, 2018 * Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or @@ -25,6 +25,7 @@ #include "libguile/__scm.h" +#include "libguile/struct.h" |