diff options
Diffstat (limited to 'libgfortran/intrinsics')
| -rw-r--r-- | libgfortran/intrinsics/abort.c | 4 | ||||
| -rw-r--r-- | libgfortran/intrinsics/random.c | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/libgfortran/intrinsics/abort.c b/libgfortran/intrinsics/abort.c index 26a25362a7d..b042de4928f 100644 --- a/libgfortran/intrinsics/abort.c +++ b/libgfortran/intrinsics/abort.c @@ -1,5 +1,5 @@ /* Implementation of the ABORT intrinsic. - Copyright (C) 2003 Free Software Foundation, Inc. + Copyright (C) 2003, 2004 Free Software Foundation, Inc. This file is part of the GNU Fortran 95 runtime library (libgfortran). @@ -19,7 +19,7 @@ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "libgfortran.h" -#include <assert.h> +#include <stdlib.h> void prefix(abort) (void); diff --git a/libgfortran/intrinsics/random.c b/libgfortran/intrinsics/random.c index 09a3fea62dd..c1539243c0e 100644 --- a/libgfortran/intrinsics/random.c +++ b/libgfortran/intrinsics/random.c @@ -1,5 +1,5 @@ /* Implementation of the RANDOM intrinsics - Copyright 2002 Free Software Foundation, Inc. + Copyright 2002, 2004 Free Software Foundation, Inc. Contributed by Lars Segerlund <seger@linuxmail.org> The algorithm was taken from the paper : @@ -37,7 +37,11 @@ Boston, MA 02111-1307, USA. */ #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> -#include <assert.h> + +#ifdef HAVE_UNISTD_H +#include <unistd.h> +#endif + #include "libgfortran.h" /*Use the 'big' generator by default ( period -> 2**19937 ). */ |

