diff options
author | Marius Vollmer <mvo@zagadka.de> | 2002-10-21 12:03:54 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2002-10-21 12:03:54 +0000 |
commit | 64e00566db6979144b3d151111e1128d4db15750 (patch) | |
tree | 17f33354302bfa31fa4d2c8fb71ffd567f31dfc3 | |
parent | 03453b05f3e836caaa57f4ca372a7de13de6f1b5 (diff) | |
download | guile-64e00566db6979144b3d151111e1128d4db15750.tar.gz |
Include <time.h>. Also, use <...> for inclusion of system headers.
-rw-r--r-- | libguile/null-threads.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libguile/null-threads.c b/libguile/null-threads.c index ac1a135e1..41842a1b8 100644 --- a/libguile/null-threads.c +++ b/libguile/null-threads.c @@ -46,8 +46,9 @@ #include "libguile/root.h" #include "libguile/stackchk.h" #include "libguile/async.h" -#include "sys/time.h" -#include "sys/types.h" +#include <sys/time.h> +#include <sys/types.h> +#include <time.h> void *scm_null_threads_data; |