md_timer_sol.c

来自「并行解法器,功能强大」· C语言 代码 · 共 42 行

C
42
字号
/*==================================================================== * ------------------------ * | CVS File Information | * ------------------------ * * $RCSfile: md_timer_sol.c,v $ * * $Author: kddevin $ * * $Date: 1996/12/05 20:26:11 $ * * $Revision: 5.0 $ * * $Name:  $ *====================================================================*/#ifndef lintstatic char *cvs_timersol_id =  "$Id: md_timer_sol.c,v 5.0 1996/12/05 20:26:11 kddevin Exp $";#endif/******************************************************************************* * Copyright 1995, Sandia Corporation.  The United States Government retains a * * nonexclusive license in this software as prescribed in AL 88-1 and AL 91-7. * * Export of this program may require a license from the United States         * * Government.                                                                 * ******************************************************************************/#include <sys/time.h>#include <sys/resource.h>/* SUN SOLARIS timer */double second(){  extern long int clock(void);  return( (double) clock() / 1.0e+06);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?