Move time.h include to sleep.c

pull/168/head
Michael Black 2020-01-06 07:25:38 -06:00
rodzic 525a3f2b66
commit 836e5f5c17
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 6599353EC683404D
2 zmienionych plików z 1 dodań i 3 usunięć

Wyświetl plik

@ -92,8 +92,6 @@
#define CONSTANT_64BIT_FLAG(BIT) (1ull << (BIT)) #define CONSTANT_64BIT_FLAG(BIT) (1ull << (BIT))
#endif #endif
#include <time.h>
__BEGIN_DECLS __BEGIN_DECLS
extern HAMLIB_EXPORT_VAR(const char) hamlib_version[]; extern HAMLIB_EXPORT_VAR(const char) hamlib_version[];

Wyświetl plik

@ -37,7 +37,7 @@
*/ */
#include <unistd.h> #include <unistd.h>
#include <errno.h> #include <errno.h>
#include "hamlib/rig.h" #include <time.h>
unsigned int sleep(unsigned int secs) unsigned int sleep(unsigned int secs)
{ {