Files
hakmem/core/tiny_system.h

19 lines
388 B
C
Raw Permalink Normal View History

// 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