diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-03-23 11:17:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-23 11:17:24 +0100 |
commit | cbbe0743a9155f06d03d4b906209933192a02731 (patch) | |
tree | b3b78749b4a182c9e1779c8bcad5c06d487b9e6e /platform/android/api/api.h | |
parent | ed9a0d0484411e631b0cc927e46dc234054d5ae5 (diff) | |
parent | 2ecf928ae39253f8cc72de1ad1391e8ed140ed6d (diff) | |
download | redot-engine-cbbe0743a9155f06d03d4b906209933192a02731.tar.gz |
Merge pull request #37219 from RajatGoswami/missing-include-guards
Adding missing include guards to header files identified by LGTM
Diffstat (limited to 'platform/android/api/api.h')
-rw-r--r-- | platform/android/api/api.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/platform/android/api/api.h b/platform/android/api/api.h index c7296d92a7..5e951b9c88 100644 --- a/platform/android/api/api.h +++ b/platform/android/api/api.h @@ -28,5 +28,10 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ +#ifndef ANDROID_API_H +#define ANDROID_API_H + void register_android_api(); void unregister_android_api(); + +#endif // ANDROID_API_H |