summaryrefslogtreecommitdiffstats
path: root/host/project.h
diff options
context:
space:
mode:
authorroot <root@lamia.panaceas.james.local>2016-08-20 14:04:59 +0100
committerroot <root@lamia.panaceas.james.local>2016-08-20 14:04:59 +0100
commitb063a2da3024a2e3175e1ba9b0a87cb6c7470765 (patch)
treef5c90c4119b091876a3f53acf4e581316eec4926 /host/project.h
parentbc832d6d342922a828aebb997d1d9c6626898487 (diff)
downloadcandlestick-b063a2da3024a2e3175e1ba9b0a87cb6c7470765.tar.gz
candlestick-b063a2da3024a2e3175e1ba9b0a87cb6c7470765.tar.bz2
candlestick-b063a2da3024a2e3175e1ba9b0a87cb6c7470765.zip
candlestick
Diffstat (limited to 'host/project.h')
-rw-r--r--host/project.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/host/project.h b/host/project.h
deleted file mode 100644
index cf932b6..0000000
--- a/host/project.h
+++ /dev/null
@@ -1,39 +0,0 @@
-#include <libusb.h>
-#include <stdio.h>
-#include <malloc.h>
-#include <fcntl.h>
-#include <unistd.h>
-#include <stdlib.h>
-#include <libusb.h>
-#include <stdarg.h>
-
-#ifdef HAVE_ERR
-# include <err.h>
-#else
-# include <errno.h>
-# include <string.h>
-# define warnx(...) do {\
- fprintf(stderr, __VA_ARGS__);\
- fprintf(stderr, "\n"); } while (0)
-# define errx(eval, ...) do {\
- warnx(__VA_ARGS__);\
- exit(eval); } while (0)
-# define warn(...) do {\
- fprintf(stderr, "%s: ", strerror(errno));\
- warnx(__VA_ARGS__); } while (0)
-# define err(eval, ...) do {\
- warn(__VA_ARGS__);\
- exit(eval); } while (0)
-#endif /* HAVE_ERR */
-
-
-#ifdef HAVE_SYSEXITS_H
-# include <sysexits.h>
-#else
-# define EX_OK 0 /* successful termination */
-# define EX_USAGE 64 /* command line usage error */
-# define EX_SOFTWARE 70 /* internal software error */
-# define EX_IOERR 74 /* input/output error */
-#endif /* HAVE_SYSEXITS_H */
-
-