mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-13 02:47:07 +00:00
change #include <string.h> to #include "string.h"
this is required to fix the following error when compiling with clang: CC build/string.o src/string.c:3:10: error: 'string.h' file not found with <angled> include; use "quotes" instead ^~~~~~~~~~ "string.h" Signed-off-by: Sven Peter <sven@svenpeter.dev>
This commit is contained in:
parent
d2fa0c9db9
commit
4c4850935f
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
/* SPDX-License-Identifier: MIT */
|
/* SPDX-License-Identifier: MIT */
|
||||||
|
|
||||||
#include <string.h>
|
#include "string.h"
|
||||||
|
|
||||||
// Routines based on The Public Domain C Library
|
// Routines based on The Public Domain C Library
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue