1
0
mirror of https://github.com/clementine-player/Clementine synced 2025-01-18 20:40:43 +01:00

Add missing header for _exit()

Fixes #4188
This commit is contained in:
John Maguire 2014-02-07 13:40:32 +01:00
parent 81933c5069
commit acfc7e6d21

View File

@ -23,7 +23,11 @@
# define _WIN32_WINNT 0x0600
# include <windows.h>
# include <iostream>
#endif // Q_OS_WIN32
#endif // Q_OS_WIN32
#ifdef Q_OS_UNIX
# include <unistd.h>
#endif // Q_OS_UNIX
#include <QDir>
#include <QFont>