1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-25 09:16:07 +03:00

Merge pull request #11196 from mathiasvr/pr-std-headers

Style: Use angle brackets with standard library headers
This commit is contained in:
J Blackman 2022-06-28 16:06:31 +10:00 committed by GitHub
commit 71fea676e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 27 additions and 24 deletions

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"