3165cc82ad
Currently we are installing package specific completions for fisg shell in `$PREFIX/share/fish/completions` which is incorrect. This also fixes completions from fish ahell conflicting with other packages' completions.
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);
|