1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-19 10:27:09 +00:00
termux-packages/packages/lastpass-cli/process.h.patch
Yaksh Bariya 3165cc82ad Install external completions for fish in $PREFIX/share/fish/vendor_comletions.d
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.
2022-01-26 14:47:03 +00:00

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);