aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhillip Lougher <phillip@squashfs.org.uk>2014-05-06 00:25:09 +0100
committerPhillip Lougher <phillip@squashfs.org.uk>2014-05-06 00:25:09 +0100
commit0627ae5e8883af19d49ca0dedd105b5fb018b066 (patch)
tree0904cbf6a5fd505001553f4487ffb4f60636ef39
parentf6b480e0a1c435244218796ea3797802ace0a8d4 (diff)
downloadsquashfs-tools-0627ae5e8883af19d49ca0dedd105b5fb018b066.tar.gz
info: protect against multiple inclusion
Signed-off-by: Phillip Lougher <phillip@squashfs.org.uk>
-rw-r--r--squashfs-tools/info.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/squashfs-tools/info.h b/squashfs-tools/info.h
index e273f1d..bcf03a2 100644
--- a/squashfs-tools/info.h
+++ b/squashfs-tools/info.h
@@ -1,8 +1,10 @@
+#ifndef INFO_H
+#define INFO_H
/*
* Create a squashfs filesystem. This is a highly compressed read only
* filesystem.
*
- * Copyright (c) 2013
+ * Copyright (c) 2013, 2014
* Phillip Lougher <phillip@squashfs.org.uk>
*
* This program is free software; you can redistribute it and/or
@@ -25,3 +27,4 @@
extern void disable_info();
extern void update_info(struct dir_ent *);
extern void init_info();
+#endif