]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Remove the header file safetime.h
authorOliver Kurth <okurth@vmware.com>
Mon, 26 Feb 2018 20:29:08 +0000 (12:29 -0800)
committerOliver Kurth <okurth@vmware.com>
Mon, 26 Feb 2018 20:29:08 +0000 (12:29 -0800)
This removes the file itself.

open-vm-tools/lib/include/safetime.h [deleted file]

diff --git a/open-vm-tools/lib/include/safetime.h b/open-vm-tools/lib/include/safetime.h
deleted file mode 100644 (file)
index fd56da2..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-/*********************************************************
- * Copyright (C) 2004-2018 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as published
- * by the Free Software Foundation version 2.1 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE.  See the Lesser GNU General Public
- * License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA.
- *
- *********************************************************/
-
-/*
- * safetime.h --
- *
- *      This header file defines wrappers so that we use the
- *      64-bit versions of the C time calls.  This file is
- *      temporary until we switch to a newer version of
- *      Visual Studio that uses the 64-bit verisions by default.
- *
- *      NB: We have switched; existence of this header is temporary
- *      until include sites can be updated.
- *
- */
-
-#ifndef _SAFETIME_H_
-#define _SAFETIME_H_
-
-#ifdef _WIN32
-
-#include <time.h>
-#include <sys/utime.h>
-#include <sys/timeb.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-
-#else
-
-#include <sys/types.h>
-#include <time.h>
-#include <sys/stat.h>
-#include <utime.h>
-
-#endif
-
-#endif