mirror of
https://github.com/opnsense/src.git
synced 2026-06-06 23:32:52 -04:00
sys/mount.h: use __inline
instead of plain inline, for C89 Reported by: antoine Sponsored by: The FreeBSD Foundation MFC after: 3 days
This commit is contained in:
parent
41eb4a4ca2
commit
f76cb7bd08
1 changed files with 1 additions and 1 deletions
|
|
@ -51,7 +51,7 @@
|
|||
typedef struct fsid { int32_t val[2]; } fsid_t; /* filesystem id type */
|
||||
|
||||
/* Returns non-zero if fsids are different. */
|
||||
static inline int
|
||||
static __inline int
|
||||
fsidcmp(const fsid_t *a, const fsid_t *b)
|
||||
{
|
||||
return (a->val[0] != b->val[0] || a->val[1] != b->val[1]);
|
||||
|
|
|
|||
Loading…
Reference in a new issue