OSDN Git Service

Fix broken commit -- add files that were missed.
[pf3gnuchains/gcc-fork.git] / libgfortran / intrinsics / clock.c
1 /* Implementation of the MCLOCK and MCLOCK8 g77 intrinsics.
2    Copyright (C) 2006 Free Software Foundation, Inc.
3    Contributed by François-Xavier Coudert <coudert@clipper.ens.fr>
4
5 This file is part of the GNU Fortran 95 runtime library (libgfortran).
6
7 Libgfortran is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public
9 License as published by the Free Software Foundation; either
10 version 2 of the License, or (at your option) any later version.
11
12 In addition to the permissions in the GNU General Public License, the
13 Free Software Foundation gives you unlimited permission to link the
14 compiled version of this file into combinations with other programs,
15 and to distribute those combinations without any restriction coming
16 from the use of this file.  (The General Public License restrictions
17 do apply in other respects; for example, they cover modification of
18 the file, and distribution when not linked into a combine
19 executable.)
20
21 Libgfortran is distributed in the hope that it will be useful,
22 but WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24 GNU General Public License for more details.
25
26 You should have received a copy of the GNU General Public
27 License along with libgfortran; see the file COPYING.  If not,
28 write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
29 Boston, MA 02110-1301, USA.  */
30
31 #include "config.h"
32 #include "libgfortran.h"
33
34 #ifdef TIME_WITH_SYS_TIME
35 #  include <sys/time.h>
36 #  include <time.h>
37 #else
38 #  if HAVE_SYS_TIME_H
39 #    include <sys/time.h>
40 #  else
41 #    ifdef HAVE_TIME_H
42 #      include <time.h>
43 #    endif
44 #  endif
45 #endif
46
47
48 /* INTEGER(KIND=4) FUNCTION MCLOCK()  */
49
50 extern GFC_INTEGER_4 mclock (void);
51 export_proto(mclock);
52
53 GFC_INTEGER_4
54 mclock (void)
55 {
56 #ifdef HAVE_CLOCK
57   return (GFC_INTEGER_4) clock ();
58 #else
59   return (GFC_INTEGER_4) -1;
60 #endif
61 }
62
63
64 /* INTEGER(KIND=8) FUNCTION MCLOCK8()  */
65
66 extern GFC_INTEGER_8 mclock8 (void);
67 export_proto(mclock8);
68
69 GFC_INTEGER_8
70 mclock8 (void)
71 {
72 #ifdef HAVE_CLOCK
73   return (GFC_INTEGER_8) clock ();
74 #else
75   return (GFC_INTEGER_8) -1;
76 #endif
77 }
78