1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-24 00:35:39 +03:00

Use angle brackets with standard library headers

This commit is contained in:
Mathias Rasmussen 2021-12-29 22:44:41 +01:00
parent 8402d30c0d
commit 78df1374f1
13 changed files with 27 additions and 24 deletions

View file

@ -18,9 +18,9 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "stdbool.h"
#include "stdint.h"
#include "string.h"
#include <stdbool.h>
#include <stdint.h>
#include <string.h>
#include "platform.h"