diff options
author | rbuj <[email protected]> | 2020-07-06 21:22:18 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-07-21 11:46:03 +0200 |
commit | afc16dca546862ff7e19c5bb49568486615b857e (patch) | |
tree | aab8cf6eedeb929cac33684bc8fc9330bf105317 /src/caja-self-check-functions.h | |
parent | 9f2c966a28fd54fe3fcd8ae4d9330270e7673051 (diff) | |
download | caja-afc16dca546862ff7e19c5bb49568486615b857e.tar.bz2 caja-afc16dca546862ff7e19c5bb49568486615b857e.tar.xz |
Guard block is missing
Diffstat (limited to 'src/caja-self-check-functions.h')
-rw-r--r-- | src/caja-self-check-functions.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/caja-self-check-functions.h b/src/caja-self-check-functions.h index 398999bf..ec503943 100644 --- a/src/caja-self-check-functions.h +++ b/src/caja-self-check-functions.h @@ -27,6 +27,9 @@ */ +#ifndef __CAJA_SELF_CHECK_FUNCTIONS_H__ +#define __CAJA_SELF_CHECK_FUNCTIONS_H__ + void caja_run_self_checks (void); /* Putting the prototypes for these self-check functions in each @@ -45,3 +48,6 @@ void caja_run_self_checks (void); /* Generate prototypes for all the functions. */ CAJA_FOR_EACH_SELF_CHECK_FUNCTION (CAJA_SELF_CHECK_FUNCTION_PROTOTYPE) + +#endif /* __CAJA_SELF_CHECK_FUNCTIONS_H__ */ + |