diff options
author | Joursoir <chat@joursoir.net> | 2022-09-05 20:19:00 +0300 |
---|---|---|
committer | Joursoir <chat@joursoir.net> | 2022-09-06 11:31:27 +0300 |
commit | 9f9d463f74fd50408c4447473530ca3b2af06798 (patch) | |
tree | 198a7bf87b6a81991fd85e014160a18a8ac109e6 | |
parent | e2ded11868b5dc07a3f8f1aab1e6976fb22c6bee (diff) | |
download | lock-password-9f9d463f74fd50408c4447473530ca3b2af06798.tar.gz lock-password-9f9d463f74fd50408c4447473530ca3b2af06798.tar.bz2 lock-password-9f9d463f74fd50408c4447473530ca3b2af06798.zip |
r-x11: include missing headers for function prototypes
Fix the next warning:
> no previous prototype for ‘run_clipboard’ [-Wmissing-prototypes]
-rw-r--r-- | src/r-x11.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/r-x11.c b/src/r-x11.c index 3094b71..5563178 100644 --- a/src/r-x11.c +++ b/src/r-x11.c @@ -23,6 +23,7 @@ #include <X11/Xlib.h> #include "constants.h" +#include "r-x11.h" #include "output.h" static Atom X_utf8; |