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:
Sven Peter 2021-01-15 18:18:36 +01:00 committed by Hector Martin
parent d2fa0c9db9
commit 4c4850935f

View file

@ -1,6 +1,6 @@
/* SPDX-License-Identifier: MIT */
#include <string.h>
#include "string.h"
// Routines based on The Public Domain C Library