PR/41250: David H. Gutteridge: librefuse fuse_opt.h header doesn't accommodate

C++ compilation
This commit is contained in:
christos 2009-04-19 22:25:29 +00:00
parent 419f4aa241
commit 0852251407
1 changed files with 9 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: fuse_opt.h,v 1.4 2007/05/17 01:55:43 christos Exp $ */
/* $NetBSD: fuse_opt.h,v 1.5 2009/04/19 22:25:29 christos Exp $ */
/*
* Copyright (c) 2007 Alistair Crooks. All rights reserved.
@ -31,6 +31,10 @@
#ifndef _FUSE_OPT_H_
#define _FUSE_OPT_H_
#ifdef __cplusplus
extern "C" {
#endif
enum {
FUSE_OPT_KEY_OPT = -1,
FUSE_OPT_KEY_NONOPT = -2,
@ -59,4 +63,8 @@ int fuse_opt_parse(struct fuse_args *, void *,
const struct fuse_opt *, fuse_opt_proc_t);
int fuse_opt_match(const struct fuse_opt *, const char *);
#ifdef __cplusplus
}
#endif
#endif /* _FUSE_OPT_H_ */