summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2015-10-30 08:01:30 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-26 15:20:59 +0200
commit55d372f0a92fa862e90da3ee23cb061aaa9c7ec4 (patch)
tree5b1602640c35934431f60855f6f6d52bf2989e91
parentDummy PHOLD() and PRELE() (diff)
downloadrtems-libbsd-55d372f0a92fa862e90da3ee23cb061aaa9c7ec4.tar.bz2
Declare flsll()
-rw-r--r--freebsd/sys/sys/libkern.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/freebsd/sys/sys/libkern.h b/freebsd/sys/sys/libkern.h
index 4965ba3a..9700e09b 100644
--- a/freebsd/sys/sys/libkern.h
+++ b/freebsd/sys/sys/libkern.h
@@ -105,6 +105,9 @@ int fls(int);
#ifndef HAVE_INLINE_FLSL
int flsl(long);
#endif
+#ifndef HAVE_INLINE_FLSLL
+int flsll(long long);
+#endif
int fnmatch(const char *, const char *, int);
int locc(int, char *, u_int);
void *memchr(const void *s, int c, size_t n);