diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-10-07 16:13:13 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-10-07 16:55:43 -0700 |
commit | 2627ea927d06f260f7ee08d8fc45718a28018395 (patch) | |
tree | d0d0274d32d16090f9bc18279df43469a4138127 /uemis-downloader.c | |
parent | 054406b420c7a4bbabbe839f25966fa121adfb5f (diff) | |
download | subsurface-2627ea927d06f260f7ee08d8fc45718a28018395.tar.gz |
Next round of code removal and header cleanup
None of this is used anywhere
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'uemis-downloader.c')
-rw-r--r-- | uemis-downloader.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/uemis-downloader.c b/uemis-downloader.c index 067e113b0..eced216aa 100644 --- a/uemis-downloader.c +++ b/uemis-downloader.c @@ -10,21 +10,17 @@ * Zurich) but did not actually use any of his copyrighted code, therefore the license under which * he released his code does not apply to this new implementation in C */ -#include <sys/types.h> -#include <sys/stat.h> #include <fcntl.h> #include <dirent.h> #include <stdio.h> -#include <pthread.h> #include <unistd.h> #include <string.h> -#include "gettext.h" +#include "gettext.h" #include "libdivecomputer.h" #include "uemis.h" -#include "dive.h" #include "divelist.h" -#include "display.h" + #define ERR_FS_ALMOST_FULL QT_TR_NOOP("Uemis Zurich: File System is almost full\nDisconnect/reconnect the dive computer\nand click \'Retry\'") #define ERR_FS_FULL QT_TR_NOOP("Uemis Zurich: File System is full\nDisconnect/reconnect the dive computer\nand try again") #define ERR_FS_SHORT_WRITE QT_TR_NOOP("Short write to req.txt file\nIs the Uemis Zurich plugged in correctly?") |