Ignore:
Timestamp:
Aug 16, 2003, 6:59:22 PM (22 years ago)
Author:
bird
Message:

binutils v2.14 - offical sources.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/binutils/libiberty/getruntime.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r608 r609  
    11/* Return time used so far, in microseconds.
    2    Copyright (C) 1994, 1999 Free Software Foundation, Inc.
     2   Copyright (C) 1994, 1999, 2002 Free Software Foundation, Inc.
    33
    44This file is part of the libiberty library.
     
    2222#include "ansidecl.h"
    2323#include "libiberty.h"
     24
     25/* On some systems (such as WindISS), you must include <sys/types.h>
     26   to get the definition of "time_t" before you include <time.h>.  */
     27#include <sys/types.h>
    2428
    2529/* There are several ways to get elapsed execution time; unfortunately no
     
    7478#endif
    7579
     80/*
     81
     82@deftypefn Replacement long get_run_time (void)
     83
     84Returns the time used so far, in microseconds.  If possible, this is
     85the time used by this process, else it is the elapsed time since the
     86process started.
     87
     88@end deftypefn
     89
     90*/
     91
    7692long
    7793get_run_time ()
Note: See TracChangeset for help on using the changeset viewer.