diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-05-30 20:51:30 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-06-19 13:11:10 -0700 |
commit | 529bdef0d66ade01f7ae0c99d1f5577102bfe278 (patch) | |
tree | 0524742128f76bdea644ce15969ccc18c5418607 /core/equipment.c | |
parent | 27d7f274094e5b1de01816610dedef154601c525 (diff) | |
download | subsurface-529bdef0d66ade01f7ae0c99d1f5577102bfe278.tar.gz |
Cleanup: create equipment.h header
There is an equipment.c file, but no corresponding header. Move the
corresponding functions into a newly created header. This does not
improve compile time since, at least for now, equipment.h is included
in dive.h. But it makes things more consistent.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/equipment.c')
-rw-r--r-- | core/equipment.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/equipment.c b/core/equipment.c index 39bf97af9..325c57cb7 100644 --- a/core/equipment.c +++ b/core/equipment.c @@ -10,6 +10,7 @@ #include <stdlib.h> #include <stdarg.h> #include <time.h> +#include "equipment.h" #include "gettext.h" #include "dive.h" #include "display.h" |