19 lines
294 B
C
19 lines
294 B
C
#ifndef __COMPAT_H
|
|
#define __COMPAT_H
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <fcntl.h>
|
|
#include <stdarg.h>
|
|
#include <getopt.h>
|
|
#include <errno.h>
|
|
|
|
#define ARRAY_SIZE(a) sizeof(a) / sizeof(*a)
|
|
|
|
enum err {
|
|
EHINDI = 1
|
|
};
|
|
|
|
#endif /* __COMPAT_H */
|