odyssey/machine/machine_private.h

33 lines
472 B
C
Raw Normal View History

2017-03-21 09:47:32 +00:00
#ifndef MACHINE_PRIVATE_H_
#define MACHINE_PRIVATE_H_
/*
* machinarium.
* cooperative multitasking engine.
*/
#define _GNU_SOURCE 1
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <inttypes.h>
#include <string.h>
#include <assert.h>
#include <signal.h>
#include <unistd.h>
#include <ucontext.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <uv.h>
#include "machine.h"
#include "mm_list.h"
#include "mm.h"
#endif