vscode: do not include system include

This commit is contained in:
Alex 2022-10-16 20:53:00 +03:00
parent d506c4e3c1
commit 04757bd11c
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD
2 changed files with 5 additions and 3 deletions

View File

@ -33,7 +33,10 @@
"-pipe",
"-mcmodel=kernel",
"-msoft-float",
"-fno-builtin"
"-fno-builtin",
"-ffreestanding",
"-nostdinc",
"-nostdinc++"
]
}
],

View File

@ -39,8 +39,7 @@
#ifndef PRINTF_H_
#define PRINTF_H_
#include <stdarg.h>
#include <stddef.h>
#include <types.h>
#ifdef __cplusplus
extern "C"