]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgfortran/intrinsics/clock.c
Update copyright years.
[thirdparty/gcc.git] / libgfortran / intrinsics / clock.c
CommitLineData
bf3fb7e4 1/* Implementation of the MCLOCK and MCLOCK8 g77 intrinsics.
99dee823 2 Copyright (C) 2006-2021 Free Software Foundation, Inc.
bf3fb7e4
FXC
3 Contributed by François-Xavier Coudert <coudert@clipper.ens.fr>
4
74544378 5This file is part of the GNU Fortran runtime library (libgfortran).
bf3fb7e4
FXC
6
7Libgfortran is free software; you can redistribute it and/or
8modify it under the terms of the GNU General Public
9License as published by the Free Software Foundation; either
748086b7 10version 3 of the License, or (at your option) any later version.
bf3fb7e4
FXC
11
12Libgfortran is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
748086b7
JJ
17Under Section 7 of GPL version 3, you are granted additional
18permissions described in the GCC Runtime Library Exception, version
193.1, as published by the Free Software Foundation.
20
21You should have received a copy of the GNU General Public License and
22a copy of the GCC Runtime Library Exception along with this program;
23see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24<http://www.gnu.org/licenses/>. */
bf3fb7e4 25
bf3fb7e4 26#include "libgfortran.h"
74544378 27#include <time.h>
bf3fb7e4
FXC
28
29
30/* INTEGER(KIND=4) FUNCTION MCLOCK() */
31
32extern GFC_INTEGER_4 mclock (void);
33export_proto(mclock);
34
35GFC_INTEGER_4
36mclock (void)
37{
bf3fb7e4 38 return (GFC_INTEGER_4) clock ();
bf3fb7e4
FXC
39}
40
41
42/* INTEGER(KIND=8) FUNCTION MCLOCK8() */
43
44extern GFC_INTEGER_8 mclock8 (void);
45export_proto(mclock8);
46
47GFC_INTEGER_8
48mclock8 (void)
49{
bf3fb7e4 50 return (GFC_INTEGER_8) clock ();
bf3fb7e4
FXC
51}
52