blob: 4c01c2472d8dd7b2516e5bf478a48950e60bf7a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef COMMON_H
#define COMMON_H
#include <sys/time.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdint.h>
#include "consts.h"
extern struct timeval* last_press;
#endif
|