it's unclear what the historical signature for this function was, but semantically, the argument should be a pointer to const, and this is what glibc uses. correct programs should not be using this function anyway, so it's unlikely to matter.
10 lines
183 B
C
10 lines
183 B
C
#define _GNU_SOURCE
|
|
#include <time.h>
|
|
#include <sys/time.h>
|
|
|
|
int stime(const time_t *t)
|
|
{
|
|
struct timeval tv = { .tv_sec = *t, .tv_usec = 0 };
|
|
return settimeofday(&tv, (void *)0);
|
|
}
|