Remove unused file

This commit is contained in:
Luis Díaz Más 2022-03-04 17:19:47 +01:00
parent 23da0c3955
commit 15697fcd1e
2 changed files with 0 additions and 22 deletions

View File

@ -34,7 +34,6 @@ add_library( exiv2lib_int OBJECT
tiffimage_int.cpp tiffimage_int.hpp
tiffvisitor_int.cpp tiffvisitor_int.hpp
tifffwd_int.hpp
timegm.h
unused.h
utils.hpp utils.cpp
)

View File

@ -1,21 +0,0 @@
#pragma once
#include <ctime>
#ifdef __cplusplus
extern "C" {
#endif
// The UTC version of mktime
/* timegm is replaced with _mkgmtime on Windows (msvc && mingw) */
#if defined(_MSC_VER)
#define timegm _mkgmtime
#endif
#if defined(__MINGW__)
time_t timegm(struct tm * const tmp);
#endif
#ifdef __cplusplus
}
#endif