You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
371 B

8 years ago
#ifndef F2B_COMMON_H_
#define F2B_COMMON_H_
8 years ago
#include <alloca.h>
8 years ago
#include <assert.h>
8 years ago
#include <ctype.h>
8 years ago
#include <errno.h>
8 years ago
#include <limits.h>
8 years ago
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
8 years ago
#include <sys/types.h>
#include <time.h>
#include <unistd.h>
#define FREE(x) free(x), x = NULL
8 years ago
#endif /* F2B_COMMON_H_ */