stdint: do not rely on -ffreestanding

GCC's default stdint.h only defaults to stdint-gcc.h, which we want to
use, when using -ffreestanding. Make our wishes explicit to avoid
needing that flag.
This commit is contained in:
Lephenixnoir 2022-08-12 22:43:37 +02:00
parent 31ee6fdbee
commit 143029a837
Signed by untrusted user: Lephenixnoir
GPG Key ID: 1BBA026E13FC0495
1 changed files with 2 additions and 0 deletions

2
include/stdint.h Normal file
View File

@ -0,0 +1,2 @@
/* We rely on GCC's default version. */
#include "stdint-gcc.h"