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.
24 lines
442 B
24 lines
442 B
/** |
|
* @file |
|
* Common include headers |
|
*/ |
|
|
|
#include <stdarg.h> |
|
#include <stdbool.h> |
|
#include <stddef.h> |
|
#include <stdint.h> |
|
#include <stdio.h> |
|
#include <stdlib.h> |
|
#include <string.h> |
|
#include <unistd.h> |
|
#include <assert.h> |
|
#include <fcntl.h> |
|
#include <string.h> |
|
#include <errno.h> |
|
#include <limits.h> |
|
#include <sys/stat.h> |
|
#include <sys/types.h> |
|
|
|
/** frees memory and sets pointer to zero */ |
|
#define FREE(ptr) \ |
|
free((ptr)); (ptr) = NULL;
|
|
|