File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 206
206
/* #undef HAVE_ADDR_V6_IN_UTMPX */
207
207
208
208
/* Define to 1 if you have the `arc4random' function. */
209
- /* #undef HAVE_ARC4RANDOM */
209
+ #define HAVE_ARC4RANDOM 1
210
210
211
211
/* Define to 1 if you have the `arc4random_buf' function. */
212
- /* #undef HAVE_ARC4RANDOM_BUF */
212
+ #define HAVE_ARC4RANDOM_BUF 1
213
213
214
214
/* Define to 1 if you have the `arc4random_uniform' function. */
215
- /* #undef HAVE_ARC4RANDOM_UNIFORM */
215
+ #define HAVE_ARC4RANDOM_UNIFORM 1
216
216
217
217
/* Define to 1 if you have the `asprintf' function. */
218
218
/* #undef HAVE_ASPRINTF */
Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ nanosleep(const struct timespec *req, struct timespec *rem)
190
190
* Copyright (c) 2009, 2010 NoMachine
191
191
* All rights reserved
192
192
*/
193
- int
193
+ static int
194
194
gettimeofday (struct timeval * tv , void * tz )
195
195
{
196
196
union {
@@ -212,7 +212,7 @@ gettimeofday(struct timeval *tv, void *tz)
212
212
return 0 ;
213
213
}
214
214
215
- void
215
+ static void
216
216
explicit_bzero (void * b , size_t len )
217
217
{
218
218
SecureZeroMemory (b , len );
@@ -1480,7 +1480,7 @@ localtime_r(const time_t *timep, struct tm *result)
1480
1480
return localtime_s (result , timep ) == 0 ? result : NULL ;
1481
1481
}
1482
1482
1483
- void
1483
+ static void
1484
1484
freezero (void * ptr , size_t sz )
1485
1485
{
1486
1486
if (ptr == NULL )
You can’t perform that action at this time.
0 commit comments