Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Glasgow Haskell Compiler
GHC
Commits
0c82f29f
Commit
0c82f29f
authored
Mar 01, 1999
by
sof
Browse files
[project @ 1999-03-01 09:04:07 by sof]
mingw32 tweaks
parent
366185c1
Changes
1
Hide whitespace changes
Inline
Side-by-side
ghc/lib/std/cbits/getCPUTime.c
View file @
0c82f29f
/*
* (c) The GRASP/AQUA Project, Glasgow University, 1994-1998
*
* $Id: getCPUTime.c,v 1.
3
199
8/12/02 13:27:36 simonm
Exp $
* $Id: getCPUTime.c,v 1.
4
199
9/03/01 09:04:07 sof
Exp $
*
* getCPUTime Runtime Support
*/
...
...
@@ -25,16 +25,20 @@
#include <unistd.h>
#endif
#ifdef HAVE_SYS_TIMES_H
#include <sys/times.h>
#ifndef mingw32_TARGET_OS
# ifdef HAVE_SYS_TIMES_H
# include <sys/times.h>
# endif
#endif
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
#if defined(HAVE_SYS_RESOURCE_H) && ! irix_TARGET_OS
#include <sys/resource.h>
#if !defined(mingw32_TARGET_OS) && !defined(irix_TARGET_OS)
# if defined(HAVE_SYS_RESOURCE_H)
# include <sys/resource.h>
# endif
#endif
#ifdef HAVE_SYS_TIMEB_H
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment