diff options
author | Joursoir <chat@joursoir.net> | 2022-09-06 09:27:00 +0300 |
---|---|---|
committer | Joursoir <chat@joursoir.net> | 2022-09-06 11:32:01 +0300 |
commit | 1a50644a9c4a435bc892f81d0dcdbf3161cc61ec (patch) | |
tree | 7c77fb1f8f5c5f8682c55395d11db4adb748b9eb | |
parent | 9f9d463f74fd50408c4447473530ca3b2af06798 (diff) | |
download | lock-password-1a50644a9c4a435bc892f81d0dcdbf3161cc61ec.tar.gz lock-password-1a50644a9c4a435bc892f81d0dcdbf3161cc61ec.tar.bz2 lock-password-1a50644a9c4a435bc892f81d0dcdbf3161cc61ec.zip |
xstd: include missing headers for function prototypes
Fix the next warning:
> no previous prototype for ‘xstrcat’ [-Wmissing-prototypes]
-rw-r--r-- | src/xstd.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -19,6 +19,8 @@ #include <stdlib.h> #include <string.h> +#include "xstd.h" + char *xstrcat(const char *first, const char *second, const char *delimiter) { |