Change include guards in tmk_core/ and drivers/ to pragma once (#11240)

This commit is contained in:
Ryan
2020-12-26 15:56:11 +11:00
committed by GitHub
parent 48f4768d33
commit 1d1d5da43f
60 changed files with 96 additions and 258 deletions

View File

@ -1,5 +1,4 @@
#ifndef SUSPEND_AVR_H
#define SUSPEND_AVR_H
#pragma once
#include <stdint.h>
#include <stdbool.h>
@ -24,5 +23,3 @@ __asm__ __volatile__ ( \
: "r0" \
)
// clang-format on
#endif