summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Kacur <jkacur@redhat.com>2009-12-21 22:17:59 +0100
committerJohn Kacur <jkacur@redhat.com>2009-12-21 22:17:59 +0100
commit738ab3ea95aecdff6b469278f7071727ac0dc3f9 (patch)
tree485d99ccced4ea123ccd066eea29123bbbf3c396
parent2d85600632d69cae6f6886e2a18ff6b17908eb98 (diff)
downloadrt-tests-738ab3ea95aecdff6b469278f7071727ac0dc3f9.tar.gz
rt-tests: Clean-up - protect rt-utils.h
Clean-up: Protect rt-utils.h with #ifndef RT_UTILS_H Signed-off-by: John Kacur <jkacur@redhat.com>
-rw-r--r--src/lib/rt-utils.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/rt-utils.h b/src/lib/rt-utils.h
index e9c8cdd..fbdcf2b 100644
--- a/src/lib/rt-utils.h
+++ b/src/lib/rt-utils.h
@@ -1,6 +1,11 @@
+#ifndef RT_UTILS.H
+#define RT_UTILS.H
+
#define _STR(x) #x
#define STR(x) _STR(x)
#define MAX_PATH 256
int check_privs(void);
char *get_debugfileprefix(void);
+
+#endif /* RT_UTILS.H */