diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2008-10-21 08:40:54 +0000 |
---|---|---|
committer | Vincent Torri <vincent.torri@gmail.com> | 2008-10-21 08:40:54 +0000 |
commit | 67acca9238ce9a4f769c7c11689d974066b4abe7 (patch) | |
tree | c428f1145f73af18f889fcaf30f178ae13691347 /legacy/embryo/src/lib/embryo_time.c | |
parent | b22c8702abb1e4a6d23909fb470b4decae1df6fc (diff) |
move header files from embryo_private.h to source files
SVN revision: 36915
Diffstat (limited to '')
-rw-r--r-- | legacy/embryo/src/lib/embryo_time.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/legacy/embryo/src/lib/embryo_time.c b/legacy/embryo/src/lib/embryo_time.c index a05441ea6c..97c28f1daa 100644 --- a/legacy/embryo/src/lib/embryo_time.c +++ b/legacy/embryo/src/lib/embryo_time.c | |||
@@ -2,14 +2,20 @@ | |||
2 | * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 | 2 | * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 |
3 | */ | 3 | */ |
4 | 4 | ||
5 | #include "embryo_private.h" | 5 | #ifdef HAVE_CONFIG_H |
6 | #include <sys/time.h> | 6 | # include "config.h" |
7 | #include <time.h> | 7 | #endif |
8 | 8 | ||
9 | #ifndef HAVE_GETTIMEOFDAY | 9 | #ifndef HAVE_GETTIMEOFDAY |
10 | # error "Your platform isn't supported yet" | 10 | # error "Your platform isn't supported yet" |
11 | #endif | 11 | #endif |
12 | 12 | ||
13 | #include <sys/time.h> | ||
14 | #include <time.h> | ||
15 | |||
16 | #include "Embryo.h" | ||
17 | #include "embryo_private.h" | ||
18 | |||
13 | /* exported time api */ | 19 | /* exported time api */ |
14 | 20 | ||
15 | static Embryo_Cell | 21 | static Embryo_Cell |