2020-01-01 16:56:43 +01:00
|
|
|
#ifndef __COMPAT_H
|
|
|
|
#define __COMPAT_H
|
|
|
|
|
2020-01-02 16:21:58 +01:00
|
|
|
#include <stdio.h>
|
2020-01-01 16:56:43 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2020-01-02 16:21:58 +01:00
|
|
|
#include <unistd.h>
|
2020-01-13 19:10:20 +01:00
|
|
|
#include <fcntl.h>
|
2020-01-02 16:21:58 +01:00
|
|
|
#include <stdarg.h>
|
2021-03-11 20:23:07 +01:00
|
|
|
#include <getopt.h>
|
2020-01-02 16:21:58 +01:00
|
|
|
#include <errno.h>
|
2020-01-01 16:56:43 +01:00
|
|
|
|
2021-03-13 16:08:12 +01:00
|
|
|
#define ARRAY_SIZE(a) sizeof(a) / sizeof(*a)
|
|
|
|
|
2020-01-01 16:56:43 +01:00
|
|
|
#endif /* __COMPAT_H */
|