diff options
| author | Konstantin Belousov <kib@FreeBSD.org> | 2008-11-17 18:45:07 +0000 |
|---|---|---|
| committer | Konstantin Belousov <kib@FreeBSD.org> | 2008-11-17 18:45:07 +0000 |
| commit | 8b6a7cc2417b73ca236a4ae4e9752a26201e0f04 (patch) | |
| tree | c173b7952f9e890474878424841da556e181a34e /include | |
| parent | ff91686afdf319a8e68df8f71a0c692ac205b862 (diff) | |
Notes
Diffstat (limited to 'include')
| -rw-r--r-- | include/strings.h | 2 |
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 */ |
