Drop redundant declarations

- `CRT_fatalError()` is declared twice in CRT.h
- `Process_pidFormat`, `Process_writeField()` and `Process_compare` are
  declared twice in Process.h
- `btime` is defined in LinuxProcess.c and also declared in
  LinuxProcess.h, so drop in LinuxProcessList.h
This commit is contained in:
Christian Göttsche
2020-09-28 12:32:55 +02:00
committed by cgzones
parent 7ae967a04b
commit 241e4b3dbf
3 changed files with 0 additions and 10 deletions

2
CRT.h
View File

@ -168,8 +168,6 @@ void CRT_init(int delay, int colorScheme, bool allowUnicode);
void CRT_done(void);
void CRT_fatalError(const char* note);
int CRT_readKey(void);
void CRT_disableDelay(void);