mirror of https://github.com/PatrickLipka/tt.git
8 lines
133 B
C
8 lines
133 B
C
|
#ifndef TRACK_H
|
||
|
#define TRACK_H
|
||
|
#include "project.h"
|
||
|
extern int sigint;
|
||
|
void handler(int signum);
|
||
|
void track (Project *proj);
|
||
|
#endif
|