clock.c 1.5 KB

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