sanskrit-iast/compat.h

17 lines
286 B
C
Raw Permalink Normal View History

#ifndef __COMPAT_H
#define __COMPAT_H
2020-01-02 16:21:58 +01:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
2020-01-02 16:21:58 +01:00
#include <unistd.h>
#include <fcntl.h>
2020-01-02 16:21:58 +01:00
#include <stdarg.h>
#include <getopt.h>
#include <ctype.h>
2020-01-02 16:21:58 +01:00
#include <errno.h>
#define ARRAY_SIZE(a) sizeof(a) / sizeof(*a)
#endif /* __COMPAT_H */