summaryrefslogtreecommitdiff
path: root/glib/tests/hmac.c
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2013-10-19 13:04:00 -0400
committerDan Winship <danw@gnome.org>2013-11-20 09:25:39 -0500
commit158dde050702f83a058962d14156a02234fc9685 (patch)
tree73f8f1cc846447ca50cd92b3d58144fff818febe /glib/tests/hmac.c
parent3981cddbf8659458be9f863151314cd0fd1682bf (diff)
downloadglib-158dde050702f83a058962d14156a02234fc9685.tar.gz
Replace #ifdef HAVE_UNISTD_H checks with #ifdef G_OS_UNIX
In Windows development environments that have it, <unistd.h> is mostly just a wrapper around several other native headers (in particular, <io.h>, which contains read(), close(), etc, and <process.h>, which contains getpid()). But given that some Windows dev environments don't have <unistd.h>, everything that uses those functions on Windows already needed to include the correct Windows header as well, and so there is never any point to including <unistd.h> on Windows. Also, remove some <unistd.h> includes (and a few others) that were unnecessary even on unix. https://bugzilla.gnome.org/show_bug.cgi?id=710519
Diffstat (limited to 'glib/tests/hmac.c')
-rw-r--r--glib/tests/hmac.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/glib/tests/hmac.c b/glib/tests/hmac.c
index c8215dbe5..f6ee643b1 100644
--- a/glib/tests/hmac.c
+++ b/glib/tests/hmac.c
@@ -1,8 +1,5 @@
#include <glib.h>
#include <string.h>
-#ifdef G_OS_UNIX
-#include <unistd.h>
-#endif
#include <stdlib.h>
/* HMAC-MD5 test vectors as per RFC 2202 */