Below is the file 'common.h' from this revision. You can also download the file.

/* common.h */

#ifndef _COMMON_H_
#define _COMMON_H_

#include <inttypes.h>
#include "types.h"

#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))

#endif