14 lines
317 B
Diff
14 lines
317 B
Diff
--- ./process.h.orig 2022-01-26 19:24:35.448787927 +0530
|
|
+++ ./process.h 2022-01-26 19:25:06.938787915 +0530
|
|
@@ -4,8 +4,8 @@
|
|
#include <stdbool.h>
|
|
#include <sys/types.h>
|
|
|
|
-int ARGC;
|
|
-char **ARGV;
|
|
+extern int ARGC;
|
|
+extern char **ARGV;
|
|
|
|
void process_set_name(const char *name);
|
|
void process_disable_ptrace(void);
|