summaryrefslogtreecommitdiff
path: root/src/options.h
diff options
context:
space:
mode:
authorJohn Hawthorn <john.hawthorn@gmail.com>2016-06-19 23:17:53 -0700
committerJohn Hawthorn <john.hawthorn@gmail.com>2016-06-19 23:17:53 -0700
commit12bd59c5ad9f437f1555dd22b1a792c6d4ce490a (patch)
tree0d818398f74e6f06ee85d9642dc8f39c9f13d981 /src/options.h
parent52f091dfd559ba6f4ad9ddeb40411423c4914cd4 (diff)
Store state in tty_interface_t
Diffstat (limited to 'src/options.h')
-rw-r--r--src/options.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/options.h b/src/options.h
index e19e292..1f461bc 100644
--- a/src/options.h
+++ b/src/options.h
@@ -1,3 +1,6 @@
+#ifndef OPTIONS_H
+#define OPTIONS_H OPTIONS_H
+
typedef struct {
int benchmark;
const char *filter;
@@ -10,3 +13,5 @@ typedef struct {
} options_t;
void options_parse(options_t *options, int argc, char *argv[]);
+
+#endif