LibC: Add most of the "header may make visible" dependencies from POSIX

This commit is contained in:
Tim Schumacher 2023-07-15 15:22:45 +02:00 committed by Andrew Kaster
commit aae106e37b
Notes: sideshowbarker 2024-07-17 02:37:08 +09:00
21 changed files with 104 additions and 9 deletions

View file

@ -6,12 +6,15 @@
#pragma once
#include <bits/pthread_integration.h>
// Includes essentially mandated by POSIX:
// https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/pthread.h.html
#include <sched.h>
#include <time.h>
#include <bits/pthread_integration.h>
#include <stdint.h>
#include <sys/cdefs.h>
#include <sys/types.h>
#include <time.h>
__BEGIN_DECLS