Skip to content

Commit 9699faa

Browse files
committed
Change include style from "" to <>.
This allows using libraries to override headers in order to inject things like custom logging function definitions.
1 parent 8e251dd commit 9699faa

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

lfs.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
* Copyright (c) 2017, Arm Limited. All rights reserved.
66
* SPDX-License-Identifier: BSD-3-Clause
77
*/
8-
#include "lfs.h"
9-
#include "lfs_util.h"
8+
#include <lfs.h>
9+
#include <lfs_util.h>
1010

1111

1212
// some constants used throughout the code

lfs_util.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Copyright (c) 2017, Arm Limited. All rights reserved.
66
* SPDX-License-Identifier: BSD-3-Clause
77
*/
8-
#include "lfs_util.h"
8+
#include <lfs_util.h>
99

1010
// Only compile if user does not provide custom config
1111
#ifndef LFS_CONFIG

0 commit comments

Comments
 (0)