summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/strings.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/strings.h b/include/strings.h
index 4b19d0ecc665..f6a002447cdc 100644
--- a/include/strings.h
+++ b/include/strings.h
@@ -44,8 +44,10 @@ void bzero(void *, size_t); /* LEGACY */
int ffs(int) __pure2;
#ifdef __BSD_VISIBLE
int ffsl(long) __pure2;
+int ffsll(long long) __pure2;
int fls(int) __pure2;
int flsl(long) __pure2;
+int flsll(long long) __pure2;
#endif
char *index(const char *, int) __pure; /* LEGACY */
char *rindex(const char *, int) __pure; /* LEGACY */