2020-11-27 18:03:42 +00:00
|
|
|
|
|
|
|
#ifndef MM_C_H
|
|
|
|
#define MM_C_H
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
2020-11-30 12:33:45 +00:00
|
|
|
|
2020-11-27 18:03:42 +00:00
|
|
|
#include <limits.h>
|
2020-11-30 12:33:45 +00:00
|
|
|
#include <unistd.h>
|
2020-11-27 18:03:42 +00:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
2021-12-09 11:34:04 +00:00
|
|
|
#include <sys/time.h>
|
2020-11-27 18:03:42 +00:00
|
|
|
#include <sys/un.h>
|
2020-11-30 12:33:45 +00:00
|
|
|
|
2020-11-27 18:03:42 +00:00
|
|
|
#include <netdb.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#endif // MM_C_H
|