19 lines
388 B
C
19 lines
388 B
C
|
|
// tiny_system.h - System includes for Tiny allocator
|
||
|
|
// Consolidates all standard library includes to reduce clutter
|
||
|
|
|
||
|
|
#ifndef TINY_SYSTEM_H
|
||
|
|
#define TINY_SYSTEM_H
|
||
|
|
|
||
|
|
#include <stdio.h>
|
||
|
|
#include <stdlib.h>
|
||
|
|
#include <string.h>
|
||
|
|
#include <strings.h>
|
||
|
|
#include <sys/mman.h>
|
||
|
|
#include <unistd.h>
|
||
|
|
#include <errno.h>
|
||
|
|
#include <sched.h>
|
||
|
|
#include <pthread.h>
|
||
|
|
#include <time.h>
|
||
|
|
|
||
|
|
#endif // TINY_SYSTEM_H
|