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:
Konstantin Belousov 2024-01-31 00:14:25 +02:00
parent 41eb4a4ca2
commit f76cb7bd08

View file

@ -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]);