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.
 
 

19 lines
358 B

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