diff options
author | Francois-Xavier Coudert <coudert@clipper.ens.fr> | 2005-10-19 11:45:27 +0200 |
---|---|---|
committer | François-Xavier Coudert <fxcoudert@gcc.gnu.org> | 2005-10-19 09:45:27 +0000 |
commit | 2cdc88b64d540cd3ab1c5d1b89dd828abf373068 (patch) | |
tree | db3ce510720abd6a2feeefd9d3500296ed78ca1c /libgfortran/intrinsics/sleep.c | |
parent | 9c5923aea764c5220e5ebdfad370ddfd71d2e4ab (diff) | |
download | gcc-2cdc88b64d540cd3ab1c5d1b89dd828abf373068.zip gcc-2cdc88b64d540cd3ab1c5d1b89dd828abf373068.tar.gz gcc-2cdc88b64d540cd3ab1c5d1b89dd828abf373068.tar.bz2 |
re PR libfortran/24432 (Missing symbols)
PR libfortran/24432
* c99_protos.h: Define preprocessor HAVE_ macros with value 1
instead of empty value.
* intrinsics/c99_functions.c: Likewise.
* intrinsics/getXid.c: Define HAVE_GETPID with value 1 instead of
empty value.
* intrinsics/sleep.c: Define HAVE_SLEEP with value 1 instead of
empty value.
From-SVN: r105603
Diffstat (limited to 'libgfortran/intrinsics/sleep.c')
-rw-r--r-- | libgfortran/intrinsics/sleep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgfortran/intrinsics/sleep.c b/libgfortran/intrinsics/sleep.c index a9f579c..3a482fa 100644 --- a/libgfortran/intrinsics/sleep.c +++ b/libgfortran/intrinsics/sleep.c @@ -43,7 +43,7 @@ Boston, MA 02110-1301, USA. */ # include <windows.h> # undef sleep # define sleep(x) Sleep(1000*(x)) -# define HAVE_SLEEP +# define HAVE_SLEEP 1 #endif /* SUBROUTINE SLEEP(SECONDS) |