Revert "squash! DRAFT lib/m2: SYS_gettimeofday expects pointers. -- newer M2-Planet?"

This reverts commit 08f0adcdfa.
This commit is contained in:
Jan (janneke) Nieuwenhuizen 2023-01-24 08:02:17 +01:00
parent 08f0adcdfa
commit 932ea587df
1 changed files with 2 additions and 2 deletions

View File

@ -33,6 +33,6 @@ time (long* result)
if (r != 0)
return -1;
if (result != 0)
result[0] = tv->tv_sec;
return tv->tv_sec;
result[0] = tv.tv_sec;
return tv.tv_sec;
}