summaryrefslogtreecommitdiff
path: root/rsc
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2014-06-03 11:20:22 +0200
committerThomas Arnhold <thomas@arnhold.org>2014-06-06 19:16:40 +0000
commitc2034f3993ab0e6f4550f3059b3229bc319b6b56 (patch)
treea9686292b74bc75bfeb09a733f08cf97183631a1 /rsc
parent0ed60a973753d143158c5b17c781bac07bfc3827 (diff)
fixincludeguards: fix include guards
Change-Id: Ie6e8d4272b0b1d0d2ce93bcbc2e818a9eac1a56b Reviewed-on: https://gerrit.libreoffice.org/9629 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
Diffstat (limited to 'rsc')
-rw-r--r--rsc/source/rscpp/cpp.h4
-rw-r--r--rsc/source/rscpp/cppdef.h5
2 files changed, 9 insertions, 0 deletions
diff --git a/rsc/source/rscpp/cpp.h b/rsc/source/rscpp/cpp.h
index e27a64d81246..260e5d59a68e 100644
--- a/rsc/source/rscpp/cpp.h
+++ b/rsc/source/rscpp/cpp.h
@@ -17,6 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
+#ifndef INCLUDED_RSC_SOURCE_RSCPP_CPP_H
+#define INCLUDED_RSC_SOURCE_RSCPP_CPP_H
#ifndef TRUE
#define TRUE 1
@@ -398,4 +400,6 @@ void dumpdef( char *why );
void dumpadef( char *why, DEFBUF *dp );
#endif
+#endif // INCLUDED_RSC_SOURCE_RSCPP_CPP_H
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/rsc/source/rscpp/cppdef.h b/rsc/source/rscpp/cppdef.h
index a9ed59e43b44..bd46badf1a80 100644
--- a/rsc/source/rscpp/cppdef.h
+++ b/rsc/source/rscpp/cppdef.h
@@ -17,6 +17,9 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
+#ifndef INCLUDED_RSC_SOURCE_RSCPP_CPPDEF_H
+#define INCLUDED_RSC_SOURCE_RSCPP_CPPDEF_H
+
/*
* This redundant definition of TRUE and FALSE works around
* a limitation of Decus C.
@@ -320,4 +323,6 @@
#endif
#endif
+#endif // INCLUDED_RSC_SOURCE_RSCPP_CPPDEF_H
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */