diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2021-08-29 15:37:59 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2021-08-29 15:37:59 +0000 |
commit | f96f616b347315d4b28b4bcd0cf82f5b80f48232 (patch) | |
tree | e5514a5d7f5558b008a55fd0fafaa4128bb962b3 /usr.bin/rsync | |
parent | 8123a89584578b9445a16b696c268feb4316a175 (diff) |
This needs extern.h for the rmatch prototype
Diffstat (limited to 'usr.bin/rsync')
-rw-r--r-- | usr.bin/rsync/rmatch.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/rsync/rmatch.c b/usr.bin/rsync/rmatch.c index b037b80b9b6..6b0e678152a 100644 --- a/usr.bin/rsync/rmatch.c +++ b/usr.bin/rsync/rmatch.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rmatch.c,v 1.1 2021/08/29 13:43:46 claudio Exp $ */ +/* $OpenBSD: rmatch.c,v 1.2 2021/08/29 15:37:58 claudio Exp $ */ /* * Copyright (c) 2021 Claudio Jeker <claudio@openbsd.org> @@ -54,6 +54,7 @@ #include <limits.h> #include "charclass.h" +#include "extern.h" #define RANGE_MATCH 1 #define RANGE_NOMATCH 0 |