cdrom: change pause timing again
[pcsx_rearmed.git] / plugins / gpu_neon / psx_gpu / common.h
... / ...
CommitLineData
1#ifndef COMMON_H
2#define COMMON_H
3
4#include <stdio.h>
5#include <stdlib.h>
6#include <string.h>
7#include <sys/time.h>
8
9#include "vector_types.h"
10#include "psx_gpu.h"
11
12#define unlikely(x) __builtin_expect((x), 0)
13
14#endif
15