File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -91,6 +91,7 @@ def update_counts(current_name):
91
91
'src/llvm' ,
92
92
'src/gyp' ,
93
93
'src/libbacktrace' ,
94
+ 'src/libuv' ,
94
95
'src/compiler-rt' ,
95
96
'src/rt/hoedown' ,
96
97
'src/rustllvm' ,
Original file line number Diff line number Diff line change @@ -47,7 +47,8 @@ extern char **environ;
47
47
#endif
48
48
#endif
49
49
50
- #if defined(__FreeBSD__ ) || defined(__linux__ ) || defined(__ANDROID__ ) || defined(__DragonFly__ ) || defined(__OpenBSD__ )
50
+ #if defined(__FreeBSD__ ) || defined(__linux__ ) || defined(__ANDROID__ ) \
51
+ || defined(__DragonFly__ ) || defined(__OpenBSD__ )
51
52
extern char * * environ ;
52
53
#endif
53
54
@@ -235,7 +236,7 @@ const char * rust_load_self() {
235
236
236
237
/* get realpath if possible */
237
238
if ((argv [0 ] != NULL ) && ((* argv [0 ] == '.' ) || (* argv [0 ] == '/' )
238
- || (strstr (argv [0 ], "/" ) != NULL )))
239
+ || (strstr (argv [0 ], "/" ) != NULL )))
239
240
240
241
self = realpath (argv [0 ], NULL );
241
242
else
You can’t perform that action at this time.
0 commit comments