summaryrefslogtreecommitdiff
path: root/ijs
diff options
context:
space:
mode:
authorRobin Watts <Robin.Watts@artifex.com>2020-05-08 14:50:08 +0100
committerRobin Watts <Robin.Watts@artifex.com>2020-05-08 14:50:45 +0100
commita0a3ac239e990a76e937710dce75f3ace1e25be7 (patch)
tree7dbfbbfa6aeaec9c09397b7a792b9d67cd1670ef /ijs
parent1883e1010c35da56bc47ad439b9e45401a3060da (diff)
downloadghostpdl-a0a3ac239e990a76e937710dce75f3ace1e25be7.tar.gz
lgtm.com issue: Add some missing "repeat include" guards.
Diffstat (limited to 'ijs')
-rw-r--r--ijs/ijs.h5
-rw-r--r--ijs/ijs_client.h5
2 files changed, 10 insertions, 0 deletions
diff --git a/ijs/ijs.h b/ijs/ijs.h
index c6672bb3b..9a03fdf41 100644
--- a/ijs/ijs.h
+++ b/ijs/ijs.h
@@ -22,6 +22,9 @@
* SOFTWARE.
**/
+#ifndef ijs_h_INCLUDED
+#define ijs_h_INCLUDED
+
/* This file contains common data types for IJS */
/* IJS_VERSION is decimal version number times 100 */
@@ -122,3 +125,5 @@ ijs_recv_int (IjsRecvChan *ch, int *val);
int
ijs_recv_block (IjsRecvChan *ch, char *buf, int buf_size);
+
+#endif
diff --git a/ijs/ijs_client.h b/ijs/ijs_client.h
index 3cc5a1ccd..64fc6f908 100644
--- a/ijs/ijs_client.h
+++ b/ijs/ijs_client.h
@@ -22,6 +22,9 @@
* SOFTWARE.
**/
+#ifndef ijs_client_h_INCLUDED
+#define ijs_client_h_INCLUDED
+
#ifdef __cplusplus
extern "C" {
#endif
@@ -94,3 +97,5 @@ ijs_client_get_version (IjsClientCtx *ctx);
#ifdef __cplusplus
}
#endif
+
+#endif