diff options
author | fx <fx@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-01-15 06:36:01 +0000 |
---|---|---|
committer | fx <fx@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-01-15 06:36:01 +0000 |
commit | 601defec27f737cdf664570e00756b7f03e73f25 (patch) | |
tree | 481020eef37c52f91899646039672adf8ac56331 /libf2c/libU77/datetime_.c | |
parent | d374e016706ec68d42e5eed7c6463eacde2e373d (diff) | |
download | gcc-601defec27f737cdf664570e00756b7f03e73f25.tar.gz |
1999-01-15 Dave Love <fx@gnu.org>
* libU77/datetime_.c (G77_date_and_time_0): Return milliseconds as
such, not as microseconds.
(scopy): Declare.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24677 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libf2c/libU77/datetime_.c')
-rw-r--r-- | libf2c/libU77/datetime_.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/libf2c/libU77/datetime_.c b/libf2c/libU77/datetime_.c index 4b5d28ae36c..35f0d1cdf74 100644 --- a/libf2c/libU77/datetime_.c +++ b/libf2c/libU77/datetime_.c @@ -32,6 +32,12 @@ Boston, MA 02111-1307, USA. */ #endif #include "f2c.h" +#ifdef KR_headers +VOID s_copy (); +#else +void s_copy(register char *a, register char *b, ftnlen la, ftnlen lb); +#endif + int G77_date_and_time_0 (char *date, char *fftime, char *zone, integer *values, ftnlen date_len, ftnlen fftime_len, ftnlen zone_len) @@ -58,7 +64,7 @@ int G77_date_and_time_0 (char *date, char *fftime, char *zone, struct timeval tp; struct timezone tzp; if (! gettimeofday (&tp, &tzp)) - vals[7] = tp.tv_usec; + vals[7] = tp.tv_usec/1000; } #endif if (values) /* null pointer for missing optional */ |