1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

* idea-stub.c, random.c; s/__MINGW32__/_WIN32/ to help building on native

Windows compilers.  Requested by Brian Gladman.  From Werner on stable
branch.
This commit is contained in:
David Shaw 2003-08-28 23:49:03 +00:00
parent 1814e2dbf3
commit 6eb9d6297f
3 changed files with 16 additions and 7 deletions

View file

@ -1,5 +1,6 @@
/* random.c - random number generator
* Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
* Copyright (C) 1998, 1999, 2000, 2001, 2002,
* 2003 Free Software Foundation, Inc.
*
* This file is part of GnuPG.
*
@ -33,7 +34,9 @@
#include <errno.h>
#include <string.h>
#include <time.h>
#ifndef _WIN32
#include <sys/time.h>
#endif
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
@ -50,7 +53,7 @@
#ifdef HAVE_GETRUSAGE
#include <sys/resource.h>
#endif
#ifdef __MINGW32__
#ifdef _WIN32
#include <process.h>
#endif
#include "util.h"