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 /eel/eel-lib-self-check-functions.h | |
parent | 9f2c966a28fd54fe3fcd8ae4d9330270e7673051 (diff) | |
download | caja-afc16dca546862ff7e19c5bb49568486615b857e.tar.bz2 caja-afc16dca546862ff7e19c5bb49568486615b857e.tar.xz |
Guard block is missing
Diffstat (limited to 'eel/eel-lib-self-check-functions.h')
-rw-r--r-- | eel/eel-lib-self-check-functions.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/eel/eel-lib-self-check-functions.h b/eel/eel-lib-self-check-functions.h index 00c5b028..fd404b1a 100644 --- a/eel/eel-lib-self-check-functions.h +++ b/eel/eel-lib-self-check-functions.h @@ -23,6 +23,9 @@ Author: Darin Adler <[email protected]> */ +#ifndef __EEL_LIB_SELF_CHECK_FUNCTIONS_H__ +#define __EEL_LIB_SELF_CHECK_FUNCTIONS_H__ + #include "eel-self-checks.h" void eel_run_lib_self_checks (void); @@ -47,3 +50,6 @@ void eel_run_lib_self_checks (void); /* Generate prototypes for all the functions. */ EEL_LIB_FOR_EACH_SELF_CHECK_FUNCTION (EEL_SELF_CHECK_FUNCTION_PROTOTYPE) + +#endif /* __EEL_LIB_SELF_CHECK_FUNCTIONS_H__ */ + |