diff options
Diffstat (limited to 'libc/inet/rpc/create_xid.c')
-rw-r--r-- | libc/inet/rpc/create_xid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/inet/rpc/create_xid.c b/libc/inet/rpc/create_xid.c index 8d8a34070..cbb961e4d 100644 --- a/libc/inet/rpc/create_xid.c +++ b/libc/inet/rpc/create_xid.c @@ -51,7 +51,7 @@ _create_xid (void) { struct timeval now; - __libc_gettimeofday (&now, (struct timezone *) 0); + gettimeofday (&now, (struct timezone *) 0); srand48_r (now.tv_sec ^ now.tv_usec, &__rpc_lrand48_data); is_initialized = 1; } |