File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 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):
9191 'src/llvm' ,
9292 'src/gyp' ,
9393 'src/libbacktrace' ,
94+ 'src/libuv' ,
9495 'src/compiler-rt' ,
9596 'src/rt/hoedown' ,
9697 'src/rustllvm' ,
Original file line number Diff line number Diff line change @@ -47,7 +47,8 @@ extern char **environ;
4747#endif
4848#endif
4949
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__ )
5152extern char * * environ ;
5253#endif
5354
@@ -235,7 +236,7 @@ const char * rust_load_self() {
235236
236237 /* get realpath if possible */
237238 if ((argv [0 ] != NULL ) && ((* argv [0 ] == '.' ) || (* argv [0 ] == '/' )
238- || (strstr (argv [0 ], "/" ) != NULL )))
239+ || (strstr (argv [0 ], "/" ) != NULL )))
239240
240241 self = realpath (argv [0 ], NULL );
241242 else
You can’t perform that action at this time.
0 commit comments