1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-25 17:25:20 +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,8 +18,8 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "stdbool.h"
#include "stdint.h"
#include <stdbool.h>
#include <stdint.h>
#include "platform.h"

View file

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

View file

@ -22,9 +22,10 @@
#ifdef USE_CAMERA_CONTROL
#include <math.h>
#include "camera_control.h"
#include "io.h"
#include "math.h"
#include "nvic.h"
#include "pwm_output.h"
#include "time.h"

View file

@ -28,7 +28,7 @@
/* Include(s) -------------------------------------------------------------------------------------------------------*/
#include "stdbool.h"
#include <stdbool.h>
#include <string.h>
#include "platform.h"

View file

@ -25,7 +25,7 @@
/* Include(s) -------------------------------------------------------------------------------------------------------*/
#include "stdbool.h"
#include <stdbool.h>
#include <string.h>
#include "platform.h"

View file

@ -25,7 +25,7 @@
/* Include(s) -------------------------------------------------------------------------------------------------------*/
#include "stdbool.h"
#include <stdbool.h>
#include <string.h>
#include "platform.h"

View file

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

View file

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

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"

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"

View file

@ -47,6 +47,8 @@
/* Includes ------------------------------------------------------------------*/
#include <stdbool.h>
#include "platform.h"
#include "build/atomic.h"
@ -56,7 +58,6 @@
#include "usbd_desc.h"
#include "usbd_cdc.h"
#include "usbd_cdc_interface.h"
#include "stdbool.h"
#include "drivers/nvic.h"
#include "drivers/serial_usb_vcp.h"

View file

@ -21,11 +21,12 @@
/* Includes ------------------------------------------------------------------*/
#include <stdbool.h>
#include "platform.h"
#include "usbd_cdc_vcp.h"
#include "stm32f4xx_conf.h"
#include "stdbool.h"
#include "drivers/time.h"
#ifdef USB_OTG_HS_INTERNAL_DMA_ENABLED

View file

@ -15,9 +15,9 @@
* along with Cleanflight. If not, see <http://www.gnu.org/licenses/>.
*/
#include "math.h"
#include "stdint.h"
#include "time.h"
#include <math.h>
#include <stdint.h>
#include <time.h>
extern "C" {
#include "common/axis.h"