diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2020-10-25 11:36:44 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-10-25 13:59:52 -0700 |
commit | 464dd93fe8266e3d0af706a6809f09611bd9f83c (patch) | |
tree | 16114568db6e58ad25e14dd76f5a724a7f33d6e8 /core/dive.h | |
parent | 8212acc9925b28ecd546b01047c6a8fc574326ef (diff) | |
download | subsurface-464dd93fe8266e3d0af706a6809f09611bd9f83c.tar.gz |
cleanup: move fill_pressures from dive.c to gas.c
This function does not access a dive structure.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/dive.h')
-rw-r--r-- | core/dive.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/dive.h b/core/dive.h index 27e73375f..523d648bb 100644 --- a/core/dive.h +++ b/core/dive.h @@ -28,8 +28,6 @@ extern const char *cylinderuse_text[NUM_GAS_USE]; extern const char *divemode_text_ui[]; extern const char *divemode_text[]; -extern void fill_pressures(struct gas_pressures *pressures, const double amb_pressure, struct gasmix mix, double po2, enum divemode_t dctype); - /* Linear interpolation between 'a' and 'b', when we are 'part'way into the 'whole' distance from a to b */ static inline int interpolate(int a, int b, int part, int whole) { |