2011-06-27 10:56:38 +02:00
|
|
|
/*-
|
2013-03-10 16:15:23 +01:00
|
|
|
* Free/Libre Near Field Communication (NFC) library
|
2012-05-29 02:33:22 +02:00
|
|
|
*
|
2013-03-10 16:15:23 +01:00
|
|
|
* Libnfc historical contributors:
|
|
|
|
* Copyright (C) 2009 Roel Verdult
|
|
|
|
* Copyright (C) 2009-2013 Romuald Conty
|
|
|
|
* Copyright (C) 2010-2012 Romain Tartière
|
|
|
|
* Copyright (C) 2010-2013 Philippe Teuwen
|
|
|
|
* Copyright (C) 2012-2013 Ludovic Rousseau
|
2013-07-17 13:57:56 +02:00
|
|
|
* See AUTHORS file for a more comprehensive list of contributors.
|
2013-03-10 16:15:23 +01:00
|
|
|
* Additional contributors of this file:
|
2012-05-29 02:33:22 +02:00
|
|
|
*
|
2011-06-27 10:56:38 +02:00
|
|
|
* 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, either version 3 of the License, or (at your
|
|
|
|
* option) any later version.
|
2012-05-29 02:33:22 +02:00
|
|
|
*
|
2011-06-27 10:56:38 +02:00
|
|
|
* 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 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, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file unistd.h
|
|
|
|
* @brief This file intended to serve as a drop-in replacement for unistd.h on Windows
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _UNISTD_H_
|
|
|
|
#define _UNISTD_H_
|
|
|
|
|
2012-12-09 19:27:46 +01:00
|
|
|
#include "contrib/windows.h"
|
2012-12-05 18:22:27 +01:00
|
|
|
|
2011-06-27 10:56:38 +02:00
|
|
|
// Needed by Sleep() under Windows
|
|
|
|
# include <winbase.h>
|
|
|
|
# define sleep(X) Sleep( X * 1000)
|
|
|
|
|
2013-01-31 15:58:20 +01:00
|
|
|
// With MinGW, getopt(3) is provided as separate header
|
|
|
|
#if defined(WIN32) && defined(__GNUC__) /* mingw compiler */
|
2013-01-31 16:12:14 +01:00
|
|
|
#include <getopt.h>
|
2013-01-31 15:58:20 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2011-06-27 10:56:38 +02:00
|
|
|
#endif /* _UNISTD_H_ */
|
|
|
|
|